/* ==========================================
   T&T Services — Custom Styles
   ========================================== */

:root {
    --brand: #1B5E20;
    --brand-dark: #0D3B12;
    --brand-light: #2E7D32;
    --secondary: #FFB300;
    --dark: #1a1a2e;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
}

/* Base */
body { font-family: 'Inter', sans-serif; color: #333; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: #1a1a1a; }

/* Brand elements */
.brand-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; background: var(--brand);
    border-radius: 8px; color: #fff; font-weight: 800; font-size: 0.75rem;
}
.btn-brand {
    background: var(--brand); color: #fff; border: none; padding: 0.6rem 1.5rem;
    font-weight: 600; border-radius: 8px; transition: all 0.2s;
}
.btn-brand:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }
.btn-outline-brand { border: 2px solid var(--brand); color: var(--brand); font-weight: 600; border-radius: 8px; }
.btn-outline-brand:hover { background: var(--brand); color: #fff; }
.text-brand { color: var(--brand) !important; }
.bg-brand { background-color: var(--brand) !important; }

/* =====================================================
   ENTERPRISE NAVIGATION & MEGA MENUS
   ===================================================== */

/* --- Navbar Shell --- */
.mm-navbar {
    background: #111827;
    position: sticky; top: 0; z-index: 1050;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    margin: 0; padding: 0;
}
.mm-container {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center;
    padding: 0 1.25rem; height: 100px;
    position: relative;
}

/* --- Logo --- */
.mm-brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; margin-right: 1.5rem; }
.mm-logo-img { height: 85px; width: auto; display: block; object-fit: contain; }

/* --- Mobile Toggle --- */
.mm-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
    margin-left: auto;
}
.mm-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: 0.2s; }

/* --- Nav Items --- */
.mm-collapse {
    display: flex; align-items: center;
    margin-left: auto;
}
.mm-nav {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 0;
}
.mm-item { position: relative; }
.mm-link {
    display: flex; align-items: center; gap: 0.35rem;
    padding: 0 0.75rem; height: 100px;
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-size: 0.82rem; font-weight: 500;
    transition: color 0.15s;
    white-space: nowrap;
}
.mm-link:hover { color: #fff; }
.mm-link-icon { font-size: 0.9rem; padding: 0 0.65rem; }
.mm-chevron { font-size: 0.55rem; transition: transform 0.2s; opacity: 0.6; }
.mm-item.mm-active .mm-chevron { transform: rotate(180deg); }
.mm-quote-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--brand); color: #fff !important;
    padding: 0.5rem 1.1rem; border-radius: 6px;
    font-size: 0.8rem; font-weight: 600; text-decoration: none;
    transition: background 0.15s;
}
.mm-quote-btn:hover { background: var(--brand-dark); }
.mm-item-cta { margin-left: 0.5rem; }

/* --- Mega Panel --- */
.mm-mega {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    border-top: 3px solid var(--brand);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 9999;
    width: 820px; max-width: 95vw;
}
.mm-mega-sm { width: 620px; }
.mm-mega-ind { width: 780px; }
.mm-has-mega.mm-active > .mm-mega,
.mm-has-mega:hover > .mm-mega {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mm-mega-body { display: flex; padding: 1.25rem; gap: 1.25rem; }
.mm-mega-body-compact { padding: 1rem; }

/* --- Mega Sections --- */
.mm-mega-main { flex: 1; min-width: 0; }
.mm-mega-col { min-width: 0; }
.mm-mega-col-wide { flex: 1.3; }
.mm-mega-label {
    font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: #9ca3af; font-weight: 700;
    padding-bottom: 0.6rem; margin-bottom: 0.6rem;
    border-bottom: 1px solid #f3f4f6;
}
.mm-mega-label i { color: var(--brand); margin-right: 0.3rem; }

/* --- Category Cards (Products) --- */
.mm-cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mm-cat-card {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.65rem 0.75rem; border-radius: 8px;
    text-decoration: none; color: #1f2937;
    transition: all 0.15s; border: 1px solid transparent;
}
.mm-cat-card:hover {
    background: #f0fdf4; border-color: #bbf7d0;
    color: var(--brand);
}
.mm-cat-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: #e8f5e9; color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
    transition: all 0.15s;
}
.mm-cat-card:hover .mm-cat-icon { background: var(--brand); color: #fff; }
.mm-cat-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.mm-cat-name { font-weight: 600; font-size: 0.82rem; line-height: 1.2; }
.mm-cat-detail { font-size: 0.7rem; color: #6b7280; margin-top: 1px; }
.mm-soon { color: #d97706; font-weight: 600; font-size: 0.68rem; }
.mm-cat-arrow { font-size: 0.6rem; color: #d1d5db; transition: all 0.15s; }
.mm-cat-card:hover .mm-cat-arrow { color: var(--brand); transform: translateX(2px); }

/* --- Products Under Categories --- */
.mm-cat-block { display: flex; flex-direction: column; }
.mm-cat-products {
    display: flex; flex-direction: column;
    padding: 0.25rem 0 0.5rem 3.25rem;
    gap: 1px;
}
.mm-product-link {
    display: block; padding: 0.2rem 0.5rem;
    font-size: 0.75rem; color: #6b7280;
    text-decoration: none; border-radius: 4px;
    transition: all 0.15s; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
}
.mm-product-link:hover {
    background: #f0fdf4; color: var(--brand);
    padding-left: 0.75rem;
}

/* --- Sidebar (Featured + CTA) --- */
.mm-mega-side { flex: 0 0 210px; }
.mm-side-inner {
    display: flex; flex-direction: column; gap: 0.25rem;
    background: #f8fdf9; border-radius: 10px;
    padding: 1rem; height: 100%;
    border: 1px solid #e8f5e9;
}
.mm-side-label {
    font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: #6b7280; font-weight: 700; margin-bottom: 0.4rem;
}
.mm-side-label i { color: var(--brand); margin-right: 0.25rem; font-size: 0.6rem; }
.mm-feat-link {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.3rem 0; text-decoration: none;
    transition: opacity 0.15s;
}
.mm-feat-link:hover { opacity: 0.75; }
.mm-feat-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--brand); flex-shrink: 0;
}
.mm-feat-dot-gold { background: #FFB300; }
.mm-feat-text { display: flex; flex-direction: column; }
.mm-feat-name { font-size: 0.78rem; font-weight: 600; color: #1f2937; }
.mm-feat-cat { font-size: 0.65rem; color: #9ca3af; }
.mm-side-empty { font-size: 0.75rem; color: #9ca3af; }
.mm-top-cat { margin-top: 0.5rem; padding-top: 0.5rem; border-top: 1px solid #e8f5e9; }
.mm-cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    margin-top: auto; padding-top: 0.75rem;
    background: var(--brand); color: #fff;
    padding: 0.5rem; border-radius: 6px;
    font-size: 0.78rem; font-weight: 600; text-decoration: none;
    transition: background 0.15s;
}
.mm-cta-btn:hover { background: var(--brand-dark); color: #fff; }

/* --- Markets --- */
.mm-market-list { display: flex; flex-direction: column; gap: 2px; }
.mm-market-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.45rem 0.5rem; border-radius: 6px;
    text-decoration: none; color: #374151;
    font-size: 0.8rem; font-weight: 500;
    transition: all 0.15s;
}
.mm-market-item:hover { background: #f0fdf4; color: var(--brand); }
.mm-market-badge {
    background: #e8f5e9; color: var(--brand);
    font-size: 0.6rem; font-weight: 700;
    padding: 0.15rem 0.45rem; border-radius: 10px;
}
.mm-region-grid { display: flex; flex-wrap: wrap; gap: 1rem; }
.mm-region-block { flex: 1; min-width: 100px; }
.mm-region-title {
    font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: #9ca3af; font-weight: 700; margin-bottom: 0.3rem;
    padding-bottom: 0.25rem; border-bottom: 1px solid #f3f4f6;
}
.mm-country-link {
    display: flex; align-items: center; gap: 0.35rem;
    padding: 0.18rem 0; text-decoration: none;
    color: #374151; font-size: 0.75rem; font-weight: 500;
    transition: color 0.15s;
}
.mm-country-link:hover { color: var(--brand); }
.mm-flag { font-size: 0.85rem; }
.mm-country-name { white-space: nowrap; }
.mm-stat-row { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.5rem; }
.mm-stat-num { font-size: 1.5rem; font-weight: 800; color: var(--brand); }
.mm-stat-label { font-size: 0.7rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.05em; }

/* --- Industries --- */
.mm-ind-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
.mm-ind-card {
    display: flex; align-items: flex-start; gap: 0.85rem;
    padding: 1rem 1.1rem; border-radius: 10px;
    text-decoration: none; color: #1f2937;
    transition: all 0.25s ease; border: 1px solid transparent;
    min-height: 90px;
}
.mm-ind-card:hover {
    background: #f0fdf4; border-color: #bbf7d0; color: var(--brand);
    transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.mm-ind-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: #e8f5e9; color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; flex-shrink: 0;
    transition: all 0.25s ease;
}
.mm-ind-card:hover .mm-ind-icon { background: var(--brand); color: #fff; transform: scale(1.08); }
.mm-ind-info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.mm-ind-name { font-weight: 700; font-size: 0.85rem; line-height: 1.3; margin-bottom: 2px; }
.mm-ind-desc { font-size: 0.73rem; color: #6b7280; margin-top: 1px; line-height: 1.4; white-space: normal; overflow: visible; }
.mm-ind-link {
    font-size: 0.72rem; font-weight: 600; color: var(--brand);
    margin-top: 4px; opacity: 0; transition: all 0.2s ease;
}
.mm-ind-card:hover .mm-ind-link { opacity: 1; }
.mm-ind-link i { font-size: 0.6rem; margin-left: 3px; transition: transform 0.2s; }
.mm-ind-card:hover .mm-ind-link i { transform: translateX(3px); }

/* --- Locations --- */
.mm-loc-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; width: 100%; }
.mm-loc-card {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.55rem 0.6rem; border-radius: 8px;
    text-decoration: none; color: #1f2937;
    transition: all 0.15s; border: 1px solid transparent;
}
.mm-loc-card:hover { background: #f0fdf4; border-color: #bbf7d0; color: var(--brand); }
.mm-loc-icon {
    width: 30px; height: 30px; border-radius: 8px;
    background: #e8f5e9; color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; flex-shrink: 0;
    transition: all 0.15s;
}
.mm-loc-card:hover .mm-loc-icon { background: var(--brand); color: #fff; }
.mm-loc-info { display: flex; flex-direction: column; }
.mm-loc-name { font-weight: 600; font-size: 0.8rem; line-height: 1.2; }
.mm-loc-region { font-size: 0.68rem; color: #6b7280; }

/* ---- Mobile ---- */
@media (max-width: 991px) {
    .mm-toggle { display: flex; }
    .mm-logo-img { height: 50px; }
    .mm-container { height: 65px; padding: 0 1rem; }
    .mm-link { height: auto !important; }
    .mm-collapse {
        display: none; position: absolute;
        top: 100%; left: 0; right: 0;
        background: #111827;
        max-height: calc(100vh - 65px); overflow-y: auto;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
    .mm-collapse.open { display: block; }
    .mm-nav { flex-direction: column; align-items: stretch; gap: 0; }
    .mm-link { height: auto; padding: 0.85rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .mm-item-cta { margin: 0.75rem 1.25rem; }
    .mm-quote-btn { justify-content: center; width: 100%; }
    .mm-mega {
        position: static; left: auto; transform: none;
        width: 100%; max-width: 100%;
        border: none; border-radius: 0; border-top: none;
        box-shadow: none; background: rgba(255,255,255,0.03);
        max-height: 0; overflow: hidden;
        opacity: 1; visibility: visible; pointer-events: auto;
        transition: max-height 0.3s ease;
    }
    .mm-has-mega.mm-active > .mm-mega { max-height: 800px; overflow-y: auto; }
    .mm-mega-body { flex-direction: column; padding: 0.75rem 1.25rem; gap: 0.75rem; }
    .mm-mega-sm, .mm-mega-ind { width: 100%; }
    .mm-cat-grid, .mm-ind-grid { grid-template-columns: 1fr; }
    .mm-loc-grid { grid-template-columns: 1fr 1fr; }
    .mm-mega-side { flex: auto; }
    .mm-side-inner { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
    .mm-side-label { color: rgba(255,255,255,0.4); }
    .mm-cat-card { color: rgba(255,255,255,0.85); }
    .mm-cat-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
    .mm-cat-icon { background: rgba(255,255,255,0.08); color: var(--secondary); }
    .mm-cat-card:hover .mm-cat-icon { background: var(--secondary); color: #111827; }
    .mm-cat-detail { color: rgba(255,255,255,0.4); }
    .mm-cat-arrow { color: rgba(255,255,255,0.2); }
    .mm-ind-card, .mm-loc-card { color: rgba(255,255,255,0.85); }
    .mm-ind-card:hover, .mm-loc-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
    .mm-ind-icon, .mm-loc-icon { background: rgba(255,255,255,0.08); color: var(--secondary); }
    .mm-ind-card:hover .mm-ind-icon, .mm-loc-card:hover .mm-loc-icon { background: var(--secondary); color: #111827; }
    .mm-ind-desc, .mm-loc-region { color: rgba(255,255,255,0.4); }
    .mm-market-item { color: rgba(255,255,255,0.85); }
    .mm-market-item:hover { background: rgba(255,255,255,0.06); color: var(--secondary); }
    .mm-market-badge { background: rgba(255,255,255,0.1); color: var(--secondary); }
    .mm-country-link { color: rgba(255,255,255,0.7); }
    .mm-country-link:hover { color: var(--secondary); }
    .mm-region-title { color: rgba(255,255,255,0.4); border-bottom-color: rgba(255,255,255,0.08); }
    .mm-mega-label { color: rgba(255,255,255,0.4); border-bottom-color: rgba(255,255,255,0.08); }
    .mm-feat-name { color: rgba(255,255,255,0.9); }
    .mm-feat-cat { color: rgba(255,255,255,0.4); }
    .mm-soon { color: #FFB300; }
    .mm-stat-num { color: var(--secondary); }
    .mm-stat-label { color: rgba(255,255,255,0.5); }
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
    color: #fff; padding: 6rem 0 5rem; position: relative; overflow: hidden;
}
.hero-section::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px; background: rgba(27,94,32,0.15);
    border-radius: 50%;
}
.hero-section h1 { font-size: 3rem; font-weight: 800; line-height: 1.15; }
@media (max-width: 768px) { .hero-section h1 { font-size: 2rem; } .hero-section { padding: 4rem 0 3rem; } }
.hero-badge {
    display: inline-block; background: rgba(255,255,255,0.15); color: #fff;
    padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
    margin-bottom: 1.5rem; letter-spacing: 0.08em; text-transform: uppercase;
    backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative; width: 100%; height: 85vh; min-height: 520px; max-height: 850px; overflow: hidden;
}
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 0.8s ease; z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 8s ease-out;
}
.hero-slide.active .hero-slide-bg { transform: scale(1.08); }
.hero-slide-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-slide-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; align-items: center; color: #fff;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1;
    margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    opacity: 0; transform: translateY(30px);
}
.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); transition: all 0.8s ease 0.3s; }
.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem); max-width: 580px; opacity: 0;
    transform: translateY(20px); line-height: 1.7; color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}
.hero-slide.active .hero-subtitle { opacity: 1; transform: translateY(0); transition: all 0.7s ease 0.5s; }
.hero-buttons { opacity: 0; transform: translateY(20px); }
.hero-slide.active .hero-buttons { opacity: 1; transform: translateY(0); transition: all 0.7s ease 0.7s; }
.hero-slide.active .hero-badge { animation: heroFadeDown 0.6s ease 0.2s forwards; }

@keyframes heroFadeDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Buttons */
.btn-hero-primary {
    background: var(--brand); color: #fff; padding: 0.85rem 2rem;
    border-radius: 8px; font-weight: 700; font-size: 0.95rem;
    border: none; transition: all 0.3s; text-decoration: none;
}
.btn-hero-primary:hover {
    background: #2E7D32; color: #fff; transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27,94,32,0.4);
}
.btn-hero-secondary {
    background: transparent; color: #fff; padding: 0.85rem 2rem;
    border-radius: 8px; font-weight: 700; font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.5); transition: all 0.3s; text-decoration: none;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15); color: #fff; border-color: #fff;
    transform: translateY(-2px);
}

/* Hero Arrows */
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    color: #fff; font-size: 1.1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px); transition: all 0.3s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow-prev { left: 1.5rem; }
.hero-arrow-next { right: 1.5rem; }

/* Hero Indicators */
.hero-indicators {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; gap: 0.6rem;
}
.hero-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(255,255,255,0.35); border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer; transition: all 0.3s; padding: 0;
}
.hero-dot.active { background: #fff; transform: scale(1.2); border-color: #fff; }
.hero-dot:hover { background: rgba(255,255,255,0.7); }

@media (max-width: 768px) {
    .hero-slider { height: 70vh; min-height: 400px; }
    .hero-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
    .hero-arrow-prev { left: 0.75rem; }
    .hero-arrow-next { right: 0.75rem; }
    .hero-indicators { bottom: 1.25rem; }
    .btn-hero-primary, .btn-hero-secondary { padding: 0.7rem 1.4rem; font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .hero-slider { height: 60vh; min-height: 350px; }
    .hero-buttons { flex-direction: column; gap: 0.5rem; }
    .hero-buttons .btn { width: 100%; text-align: center; }
}

/* Section */
.section { padding: 5rem 0; }
.section-gray { background: var(--gray-50); }
.section-header { margin-bottom: 3rem; }
.section-header h2 { font-size: 2rem; font-weight: 800; }
.section-header p { color: #666; max-width: 600px; }

/* Cards */
.commodity-card, .market-card, .industry-card, .location-card, .blog-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    border: 1px solid #eee; transition: all 0.3s;
}
.commodity-card:hover, .market-card:hover, .industry-card:hover,
.location-card:hover, .blog-card:hover {
    transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--brand);
}
.card-img-placeholder {
    height: 180px; background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand); font-size: 2.5rem;
}
.card-body-custom { padding: 1.25rem; }
.card-body-custom h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.card-body-custom p { font-size: 0.85rem; color: #666; margin-bottom: 0.75rem; }
.card-tag {
    display: inline-block; background: #e8f5e9; color: var(--brand);
    padding: 0.2rem 0.6rem; border-radius: 50px; font-size: 0.7rem; font-weight: 600;
}

/* ===== PREMIUM PRODUCT CARDS ===== */
.product-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    border: 1px solid #e8e8e8; transition: all 0.35s ease;
    display: flex; flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: var(--brand);
}
.product-card-img-wrap {
    display: block; position: relative; overflow: hidden;
    text-decoration: none;
}
.product-card-img {
    height: 240px; overflow: hidden;
}
.product-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img {
    transform: scale(1.06);
}
.product-card-img-default {
    background: linear-gradient(135deg, #f0f4e8, #e2edd0);
}
.product-card-body {
    padding: 1.5rem; flex: 1;
    display: flex; flex-direction: column;
}
.product-card-meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 0.75rem;
}
.product-card-category {
    display: inline-block; background: #e8f5e9; color: var(--brand);
    padding: 0.2rem 0.7rem; border-radius: 50px;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.02em;
}
.product-card-origin {
    font-size: 0.75rem; color: #888; font-weight: 500;
}
.product-card-title {
    font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3;
}
.product-card-title a {
    color: #1a1a1a; text-decoration: none; transition: color 0.2s;
}
.product-card-title a:hover { color: var(--brand); }
.product-card-desc {
    font-size: 0.85rem; color: #666; line-height: 1.6;
    margin-bottom: 1rem; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-btn {
    display: inline-flex; align-items: center;
    color: var(--brand); font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: all 0.25s;
    padding: 0.5rem 0; border-top: 1px solid #f0f0f0; padding-top: 0.75rem;
}
.product-card-btn:hover {
    color: #2E7D32; gap: 0.5rem;
}
.product-card-btn i { transition: transform 0.25s; }
.product-card-btn:hover i { transform: translateX(4px); }

/* Stats */
.stat-section { background: var(--brand); color: #fff; padding: 3rem 0; }
.stat-item { text-align: center; padding: 1rem; }
.stat-item .stat-number { font-size: 2.5rem; font-weight: 800; }
.stat-item .stat-label { font-size: 0.85rem; opacity: 0.8; }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
    color: #fff; padding: 4rem 0; text-align: center;
}
.cta-section h2 { color: #fff; font-size: 2rem; }

/* Footer */
.site-footer { background: #0f0f23; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: #adb5bd; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-light); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    width: 56px; height: 56px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    z-index: 1000; transition: transform 0.2s; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* Breadcrumb */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
    color: #fff; padding: 3rem 0 2rem; margin-bottom: 3rem;
}
.page-header h1 { color: #fff; font-size: 2.25rem; }
.breadcrumb-custom { background: none; padding: 0; margin: 0.5rem 0 0; }
.breadcrumb-custom .breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; }
.breadcrumb-custom .breadcrumb-item.active { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* Pagination */
.pagination .page-link { border-radius: 8px; margin: 0 2px; border: none; color: #333; }
.pagination .page-item.active .page-link { background: var(--brand); border-color: var(--brand); }

/* Form */
.form-control:focus, .form-select:focus {
    border-color: var(--brand); box-shadow: 0 0 0 3px rgba(27,94,32,0.1);
}

/* Flag emoji */
.flag-emoji { font-size: 1.5rem; }

/* Animations */
.fade-in { animation: fadeIn 0.5s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* CMS Page Content */
.cms-content h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.cms-content h3 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--brand); }
.cms-content p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.cms-content ul, .cms-content ol { color: #555; line-height: 1.8; padding-left: 1.5rem; margin-bottom: 1rem; }
.cms-content li { margin-bottom: 0.4rem; }

/* ===== INQUIRY FORM ===== */
.inquiry-section { padding: 4rem 0; background: linear-gradient(135deg, #f8faf9 0%, #e8f5e9 100%); }
.inquiry-card {
    background: #fff; border-radius: 16px; padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08); border: 1px solid #e8f5e9;
}
.inquiry-card h2 { font-size: 1.75rem; }
.inquiry-form .form-label { margin-bottom: 0.25rem; }
.inquiry-form .form-control, .inquiry-form .form-select {
    border-radius: 8px; padding: 0.6rem 0.85rem; font-size: 0.9rem;
}

/* ===== CERTIFICATIONS GRID ===== */
.certifications-section { background: #fff; }
.cert-card {
    padding: 1.5rem 1rem; border-radius: 12px;
    border: 1px solid #e8e8e8; transition: all 0.3s;
}
.cert-card:hover {
    border-color: var(--brand); transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.cert-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: #e8f5e9; color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin: 0 auto 0.75rem;
    transition: all 0.3s;
}
.cert-card:hover .cert-icon { background: var(--brand); color: #fff; }
.cert-name { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.25rem; }
.cert-desc { font-size: 0.72rem; color: #666; margin-bottom: 0; line-height: 1.4; }

/* ===== WHY CHOOSE US ===== */
.why-choose-section { }
.why-card {
    position: relative; padding: 1.75rem; border-radius: 12px;
    background: #fff; border: 1px solid #e8e8e8; transition: all 0.3s;
    overflow: hidden;
}
.why-card:hover {
    border-color: var(--brand); transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.why-number {
    position: absolute; top: -8px; right: 10px;
    font-size: 3.5rem; font-weight: 900; color: rgba(27,94,32,0.06);
    line-height: 1;
}
.why-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: #e8f5e9; color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 1rem;
    transition: all 0.3s;
}
.why-card:hover .why-icon { background: var(--brand); color: #fff; }
.why-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-desc { font-size: 0.85rem; color: #666; line-height: 1.6; margin-bottom: 0; }

/* ===== OPERATIONS ===== */
.operations-section { background: #fff; }
.ops-card {
    padding: 1.75rem; border-radius: 12px;
    background: #f8faf9; border: 1px solid #e8f5e9; transition: all 0.3s;
}
.ops-card:hover {
    background: #fff; border-color: var(--brand);
    transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.ops-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--brand); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; margin-bottom: 1rem;
    transition: all 0.3s;
}
.ops-card:hover .ops-icon { transform: scale(1.1); }
.ops-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.ops-desc { font-size: 0.85rem; color: #666; line-height: 1.6; margin-bottom: 0; }

/* ===== TRUST BAR ===== */
.trust-bar {
    background: #fff; border-bottom: 1px solid #e8e8e8;
    padding: 1rem 0; position: relative; z-index: 5;
}
.trust-bar-inner {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 1.5rem; align-items: center;
}
.trust-item {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.78rem; font-weight: 600; color: #374151;
    white-space: nowrap;
}
.trust-item i { color: var(--brand); font-size: 0.85rem; }
@media (max-width: 768px) {
    .trust-bar-inner { gap: 0.75rem; }
    .trust-item { font-size: 0.65rem; }
    .trust-item span { display: none; }
    .trust-item i { font-size: 1.1rem; }
}

/* ===== SHIPPING SECTION ===== */
.shipping-section { background: #fff; }
.shipping-card {
    padding: 2rem 1.5rem; border-radius: 14px;
    background: linear-gradient(135deg, #f0fdf4, #e8f5e9);
    border: 1px solid #c8e6c9; transition: all 0.3s;
}
.shipping-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--brand);
}
.shipping-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--brand); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin: 0 auto 1rem;
}
.shipping-card h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.shipping-detail {
    display: inline-block; background: var(--brand); color: #fff;
    padding: 0.25rem 0.75rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600;
}
.shipping-badge {
    display: flex; align-items: center; justify-content: center;
    padding: 0.75rem 1rem; border-radius: 10px;
    background: #f8faf9; border: 1px solid #e8f5e9;
    font-size: 0.85rem; font-weight: 600; color: #374151;
    transition: all 0.2s;
}
.shipping-badge:hover {
    border-color: var(--brand); color: var(--brand);
    background: #f0fdf4;
}
.shipping-badge i { color: var(--brand); }

/* ===== FAQ SECTION ===== */
.faq-section { }
.faq-item {
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 10px; margin-bottom: 0.5rem;
    overflow: hidden; transition: border-color 0.2s;
}
.faq-item:has(.faq-question:not(.collapsed)) { border-color: var(--brand); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between;
    align-items: center; padding: 1rem 1.25rem;
    background: none; border: none; text-align: left;
    font-size: 0.95rem; font-weight: 600; color: #1a1a1a;
    cursor: pointer; transition: color 0.2s;
}
.faq-question:hover { color: var(--brand); }
.faq-question i { font-size: 0.75rem; color: #999; transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-question.collapsed i { transform: rotate(0deg); }
.faq-question:not(.collapsed) i { transform: rotate(180deg); }
.faq-answer { padding: 0 1.25rem 1rem; }
.faq-answer p { font-size: 0.9rem; color: #555; line-height: 1.7; margin-bottom: 0; }
