/* ==========================================================================
   East Africa Fresh Export Limited — Agrotek-styled theme
   ========================================================================== */

:root {
    --orange: #ed7d31;
    --orange-dark: #d96a1f;
    --orange-light: #f5a05a;
    --dark: #1a1a1a;
    --dark-2: #232323;
    --dark-3: #2c2c2c;
    --text: #555;
    --heading: #1c1c1c;
    --muted: #8d8d8d;
    --line: #e8e8e8;
    --bg: #ffffff;
    --bg-alt: #f7f4ef;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    --radius: 6px;
    --container: 1200px;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.7;
    font-size: 15px;
    background: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--heading);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.6em;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p { margin-bottom: 1em; }

a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }

img { max-width: 100%; display: block; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn,
.btn-primary,
.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.btn:hover,
.btn-primary:hover,
.btn-quote:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 26px;
}

.btn-outline:hover { background: #fff; color: var(--dark); }

/* ==========================================================================
   Header / Top bar
   ========================================================================== */
.site-header { position: relative; z-index: 100; }

.top-bar {
    background: var(--dark);
    color: #cfcfcf;
    font-size: 13px;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span { margin-right: 20px; }
.top-bar-left i { color: var(--orange); margin-right: 6px; }

.top-bar-right a {
    color: #cfcfcf;
    margin-left: 12px;
    font-size: 13px;
}
.top-bar-right a:hover { color: var(--orange); }

/* Header info */
.header-info {
    background: #f7f4ef;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.header-info-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--heading);
}
.brand img { height: 56px; width: 56px; object-fit: cover; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: var(--heading);
    font-weight: 700;
}
.brand-text em {
    font-style: normal;
    font-size: 13px;
    color: var(--orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.info-blocks {
    display: flex;
    gap: 36px;
    align-items: center;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(237, 125, 49, 0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-block strong {
    display: block;
    color: var(--heading);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
}
.info-block span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main nav */
.main-nav {
    background: #fff;
    border-bottom: 3px solid var(--orange);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex: 1;
}

.nav-menu li a {
    display: block;
    padding: 22px 22px;
    color: var(--heading);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 14px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-menu li.active a,
.nav-menu li a:hover {
    color: var(--orange);
}
.nav-menu li.active a::after,
.nav-menu li a:hover::after {
    transform: scaleX(1);
}

.nav-actions { display: flex; align-items: center; }

.btn-quote { padding: 0 30px; height: 100%; align-self: stretch; }

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--heading);
    font-size: 22px;
    padding: 18px;
    cursor: pointer;
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background: #1a1a1a;
    padding: 0;
}
.hs-track { position: relative; width: 100%; height: 100%; }
.hs-slide {
    position: absolute;
    inset: 0;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: #fff;
    background: #1a1a1a center/cover no-repeat;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}
.hs-slide.hs-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}
.hs-content {
    text-align: center;
    width: 100%;
    padding: 130px 0 110px;
}

/* Arrows */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.35);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.hs-arrow:hover { background: var(--orange); border-color: var(--orange); }
.hs-prev { left: 24px; }
.hs-next { right: 24px; }

/* Dots */
.hs-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.hs-dot.hs-dot-active { background: var(--orange); transform: scale(1.3); }

/* Legacy .hero class kept for page banners */
.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45)),
                url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=1900&q=80') center/cover no-repeat;
}

.hero-inner {
    text-align: center;
    width: 100%;
    padding: 120px 0;
}

.hero-eyebrow {
    display: inline-block;
    color: var(--orange-light);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.hero h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.hero p.lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    max-width: 720px;
    margin: 0 auto 36px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Page banner (inner pages)
   ========================================================================== */
.page-banner {
    background: linear-gradient(rgba(26,26,26,0.7), rgba(26,26,26,0.7)),
                url('https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?auto=format&fit=crop&w=1900&q=80') center/cover no-repeat;
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
}
.page-banner h1 {
    color: #fff;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.breadcrumbs {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}
.breadcrumbs a { color: var(--orange-light); }
.breadcrumbs i { margin: 0 8px; font-size: 10px; }

/* ==========================================================================
   Section + headings
   ========================================================================== */
section { padding: 90px 0; }

.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #cfcfcf; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-head .eyebrow {
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    padding: 0 32px;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 2px;
    background: var(--orange);
}
.section-head .eyebrow::before { left: 0; }
.section-head .eyebrow::after { right: 0; }

.section-head h2 {
    font-size: 38px;
    text-transform: uppercase;
    line-height: 1.2;
}
.section-head h2 .accent { color: var(--orange); }

/* Heading with left orange bar (used in cards and footer) */
.bar-heading {
    position: relative;
    padding-left: 16px;
    margin-bottom: 22px;
}
.bar-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: var(--orange);
}

/* ==========================================================================
   Grids / cards
   ========================================================================== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}
.feature-card:hover {
    border-bottom-color: var(--orange);
    transform: translateY(-6px);
}
.feature-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 22px;
    transition: var(--transition);
}
.feature-card:hover .icon {
    background: var(--orange);
    color: #fff;
}
.feature-card h3 { font-size: 19px; margin-bottom: 12px; }
.feature-card p { font-size: 14px; }

.value-card {
    background: #fff;
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--orange);
}
.value-card h3 {
    font-size: 18px;
    color: var(--orange);
    margin-bottom: 8px;
}

.product-card {
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); }
.product-card .product-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.product-card .product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
}
.product-card .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: #fff;
    padding: 6px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}
.product-card .product-body { padding: 24px; }
.product-card h3 { font-size: 19px; margin-bottom: 8px; }
.product-card .meta {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 14px;
}
.product-card .meta i { color: var(--orange); margin-right: 4px; }
.product-card .read-more {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}
.product-card .read-more:hover { color: var(--orange); }

/* About split (image + content) */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image {
    height: 480px;
    background: url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    position: relative;
}
.about-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 6px solid var(--orange);
    top: 40px;
    left: -40px;
    z-index: -1;
}
.about-content .eyebrow {
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}
.about-content h2 {
    font-size: 38px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-content .accent { color: var(--orange); }
.about-content ul {
    list-style: none;
    margin: 24px 0;
}
.about-content ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--heading);
    font-weight: 500;
}
.about-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--orange);
    position: absolute;
    left: 0;
}

/* Stats strip */
.stats {
    background: var(--orange);
    color: #fff;
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(rgba(26,26,26,0.85), rgba(26,26,26,0.85)),
                url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1900&q=80') center/cover fixed no-repeat;
    color: #fff;
    text-align: center;
    padding: 90px 0;
}
.cta-banner h2 {
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.cta-banner p { font-size: 17px; max-width: 720px; margin: 0 auto 28px; opacity: 0.95; }

/* ==========================================================================
   Pre-footer strip
   ========================================================================== */
.prefooter {
    background: var(--dark);
    color: #fff;
    border-top: 1px solid #2a2a2a;
    position: relative;
}
.prefooter::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='3' cy='3' r='1' fill='%23ffffff' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}
.prefooter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 1;
}
.prefooter-item {
    padding: 38px 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}
.prefooter-item:hover { color: var(--orange-light); }
.prefooter-item.center {
    flex-direction: column;
    align-items: center;
    background: var(--dark-2);
    text-align: center;
}
.pf-label {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}
.pf-phone { font-size: 22px; color: #fff; }
.pf-icon {
    color: var(--orange);
    font-size: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--orange);
    border-radius: 50%;
}
.pf-arrow {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid var(--orange);
    color: var(--orange);
    font-size: 10px;
    margin: 0 6px;
}
.pf-text { display: inline-flex; align-items: center; gap: 4px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #1c1c1c;
    color: #b9b9b9;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Ccircle cx='4' cy='4' r='1' fill='%23ffffff' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.3fr 1.2fr;
    gap: 40px;
    padding: 80px 20px 50px;
    position: relative;
    z-index: 1;
}
.footer-title {
    color: #fff;
    font-size: 19px;
    margin-bottom: 28px;
    padding-left: 14px;
    position: relative;
    text-transform: capitalize;
}
.footer-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--orange);
}
.footer-col p { color: #b9b9b9; font-size: 14px; line-height: 1.8; }

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
    margin-top: 8px;
}
.footer-link i { color: var(--orange); }

.footer-list { list-style: none; }
.footer-list li { margin-bottom: 12px; }
.footer-list a {
    color: #b9b9b9;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.footer-list a i { color: var(--orange); font-size: 10px; }
.footer-list a:hover { color: var(--orange); }

.footer-news { list-style: none; }
.footer-news li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: center;
}
.news-thumb {
    width: 60px;
    height: 60px;
    background: #2a2a2a;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.news-date {
    color: var(--orange);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}
.news-date i { margin-right: 4px; }
.footer-news a {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}
.footer-news a:hover { color: var(--orange); }

.footer-contact { list-style: none; }
.footer-contact li {
    color: #b9b9b9;
    font-size: 14px;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}
.footer-contact li i {
    color: var(--orange);
    position: absolute;
    left: 0;
    top: 4px;
}

.footer-socials { margin-top: 18px; display: flex; gap: 8px; }
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #3a3a3a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); }

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 22px 0;
    position: relative;
    z-index: 1;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: #888;
    font-size: 13px;
}

/* ==========================================================================
   Scroll-to-top
   ========================================================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--orange);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 90;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--dark); color: #fff; }

/* ==========================================================================
   Forms
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; }

.contact-info {
    background: var(--dark);
    color: #fff;
    padding: 40px;
}
.contact-info h3 { color: #fff; }
.contact-info ul { list-style: none; margin-top: 20px; }
.contact-info li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #2c2c2c;
    color: #cfcfcf;
}
.contact-info li:last-child { border-bottom: 0; }
.contact-info li i {
    color: var(--orange);
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(237,125,49,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info li strong { display: block; color: #fff; margin-bottom: 2px; }

.contact-form {
    background: #fff;
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-control,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--line);
    background: #f9f9f9;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 18px;
    transition: var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--orange);
    background: #fff;
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.alert {
    padding: 14px 18px;
    margin-bottom: 18px;
    border-left: 4px solid var(--orange);
    background: var(--bg-alt);
    color: var(--heading);
}
.alert-success { border-color: #4caf50; }

/* Process steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    counter-reset: step;
}
.process-card {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    box-shadow: var(--shadow);
    position: relative;
    counter-increment: step;
}
.process-card::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: rgba(237,125,49,0.15);
    line-height: 1;
}
.process-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px;
}
.process-card h3 { font-size: 17px; margin-bottom: 10px; }

/* Filter bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.filter-btn {
    background: #fff;
    color: var(--heading);
    border: 1px solid var(--line);
    padding: 10px 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 11px;
    background: rgba(0,0,0,0.08);
    font-size: 11px;
    font-weight: 700;
}
.filter-btn.active .filter-count { background: rgba(255,255,255,0.25); color: #fff; }
.product-card.is-hidden { display: none; }

/* Markets list */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.market-pill {
    background: #fff;
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--orange);
}
.market-pill i {
    color: var(--orange);
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}
.market-pill strong {
    color: var(--heading);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    display: block;
}
.market-pill span { color: var(--muted); font-size: 12px; }

/* Hide utility */
.hide-sm { display: inline; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    .hero h1 { font-size: 44px; }
    .grid-3, .grid-4, .stats-grid, .process-grid, .markets-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-2, .about-split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .info-blocks { display: none; }
    .header-info-inner { justify-content: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .prefooter-grid { grid-template-columns: 1fr; }
    .nav-toggle { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 50;
    }
    .nav-menu.open { display: flex; }
    .nav-menu li a { padding: 14px 22px; border-bottom: 1px solid var(--line); }
    .nav-menu li a::after { display: none; }
    .nav-inner { position: relative; flex-wrap: wrap; }
    .btn-quote { padding: 14px 20px; font-size: 12px; }
    .hide-sm { display: none; }
}

@media (max-width: 600px) {
    .grid-3, .grid-4, .stats-grid, .process-grid, .markets-grid, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; padding: 60px 20px 30px; }
    .top-bar-inner { flex-direction: column; gap: 6px; font-size: 12px; }
    .hero h1 { font-size: 32px; }
    .hero { min-height: 480px; }
    .page-banner { padding: 70px 0 50px; }
    .page-banner h1 { font-size: 32px; }
    .section-head h2 { font-size: 26px; }
    .cta-banner h2 { font-size: 26px; }
    .stat-num { font-size: 36px; }
    section { padding: 60px 0; }
}

/* ── WhatsApp Chat Widget ── */
.wa-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
/* Trigger button */
.wa-trigger {
    width: 60px;
    height: 60px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
.wa-trigger:hover { transform: scale(1.08); box-shadow: 0 6px 26px rgba(37,211,102,0.6); }
.wa-trigger .wa-trigger-close { display: none; }
.wa-open .wa-trigger .wa-trigger-open  { display: none; }
.wa-open .wa-trigger .wa-trigger-close { display: flex; }
@keyframes wa-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
    70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-trigger { animation: wa-pulse 2.5s infinite; }
.wa-open .wa-trigger { animation: none; }

/* Panel */
.wa-panel {
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    overflow: hidden;
    display: none;
    flex-direction: column;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
}
.wa-open .wa-panel {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    animation: wa-panel-in 0.25s ease forwards;
}
@keyframes wa-panel-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Panel header */
.wa-panel-head {
    background: #075e54;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.wa-panel-head-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.wa-avatar-wrap { position: relative; flex-shrink: 0; }
.wa-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: #128c7e;
    border: 2px solid rgba(255,255,255,0.3);
}
.wa-online-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #25d366;
    border-radius: 50%;
    border: 2px solid #075e54;
}
.wa-panel-head-info > div strong { display: block; font-size: 14px; font-weight: 700; }
.wa-panel-head-info > div span  { font-size: 11px; opacity: 0.8; }
.wa-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
}
.wa-close:hover { color: #fff; }

/* Panel body — message bubble */
.wa-panel-body {
    background: #ece5dd url("data:image/svg+xml,%3Csvg width='300' height='300' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='300' height='300' fill='%23ece5dd'/%3E%3C/svg%3E");
    padding: 16px;
    min-height: 110px;
}
.wa-bubble-wrap { display: flex; }
.wa-msg-bubble {
    background: #fff;
    border-radius: 0 10px 10px 10px;
    padding: 10px 14px 6px;
    max-width: 90%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    position: relative;
}
.wa-msg-bubble::before {
    content: '';
    position: absolute;
    top: 0; left: -8px;
    border: 8px solid transparent;
    border-top-color: #fff;
    border-right-color: #fff;
}
.wa-msg-bubble strong { display: block; color: #128c7e; font-size: 12px; margin-bottom: 4px; }
.wa-msg-bubble p { font-size: 13.5px; color: #333; line-height: 1.5; margin: 0 0 4px; }
.wa-msg-time { font-size: 10px; color: #aaa; float: right; }

/* Panel footer */
.wa-panel-foot {
    padding: 12px 14px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wa-input {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 13px;
    font-family: inherit;
    resize: none;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.wa-input:focus { border-color: #25d366; }
.wa-send {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    width: 100%;
}
.wa-send:hover { background: #1ebe5d; }

@media (max-width: 480px) {
    .wa-widget { bottom: 16px; left: 16px; }
    .wa-panel { width: calc(100vw - 32px); }
}
