/* ===== ELECTRO PACK BANGLADESH — PREMIUM LIGHT THEME ===== */

/* ===== DESIGN TOKENS ===== */
:root {
    --green: #0a7e3d;
    --green-dark: #065a2b;
    --green-light: #12a854;
    --green-bg: #e8f5ee;
    --green-bg-subtle: #f0faf4;
    --red: #c0392b;
    --red-dark: #96281b;
    --red-light: #e74c3c;
    --red-bg: #fdecea;
    --gold: #f1c40f;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f1f3f5;
    --border: #e9ecef;
    --border-light: #f0f0f0;
    --text-dark: #1a1a2e;
    --text-body: #444555;
    --text-muted: #6c757d;
    --text-light: #999;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-green: 0 4px 20px rgba(10, 126, 61, 0.15);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-bn: 'Noto Sans Bengali', sans-serif;
    --font-en: 'Inter', sans-serif;
    --font-zh: 'Noto Sans SC', sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-en), var(--font-bn), var(--font-zh), sans-serif;
    background: var(--white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

body.lang-bn {
    font-family: var(--font-bn), var(--font-en), sans-serif;
}

body.lang-zh {
    font-family: var(--font-zh), var(--font-en), sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 3px;
}

/* ===== UTILITY ===== */
.section-padding {
    padding: 90px 0;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    background: var(--green-bg);
    color: var(--green);
    border: 1px solid rgba(10, 126, 61, 0.15);
}

.section-badge.red {
    background: var(--red-bg);
    color: var(--red);
    border-color: rgba(192, 57, 43, 0.15);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
}

.text-center .section-desc {
    margin: 0 auto;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-ring {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-top-color: var(--green);
    border-right-color: var(--red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 3px;
}

.lang-btn {
    padding: 5px 14px;
    border-radius: 25px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-muted);
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--green);
    color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
    transition: var(--transition);
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
}

.navbar-brand .brand-ep {
    color: var(--green);
}

.navbar-logo {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
}

.navbar-brand .brand-bd {
    color: var(--red);
    font-size: 0.7rem;
    display: block;
    margin-top: -2px;
    letter-spacing: 1px;
}

.navbar-custom .nav-link {
    color: var(--text-body) !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--green) !important;
    background: var(--green-bg-subtle);
}

.service-dropdown {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px;
    min-width: 260px;
    margin-top: 10px;
}

.service-dropdown .dropdown-item {
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-body);
    transition: var(--transition);
}

.service-dropdown .dropdown-item i {
    color: var(--text-light);
    width: 20px;
    text-align: center;
    transition: var(--transition);
}

.service-dropdown .dropdown-item:hover {
    background: var(--green-bg-subtle);
    color: var(--green);
}

.service-dropdown .dropdown-item:hover i {
    color: var(--green);
}

.navbar-toggler {
    border: 1px solid var(--border);
}

.btn-nav-cta {
    background: var(--green);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem !important;
    transition: var(--transition);
}

.btn-nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-green);
}

#hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url('../images/hero_banner.png') center/cover no-repeat;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.hero-decoration.d1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--green) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-decoration.d2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--red) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.hero-title .highlight-green {
    color: var(--green);
}

.hero-title .highlight-red {
    color: var(--red);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: black;
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary-ep {
    background: var(--green);
    color: var(--white);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-ep:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
    color: var(--white);
}

.btn-outline-ep {
    background: transparent;
    color: var(--text-dark);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-ep:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: black;
    font-weight: 500;
}

.trust-item i {
    color: var(--green);
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
}

.stat-item p {
    font-size: 0.82rem;
    color: black;
    font-weight: 500;
}

/* ===== MARQUEE ===== */
.marquee-strip {
    background: var(--green);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--white);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-weight: 600;
    font-size: 0.88rem;
}

.marquee-content span {
    margin: 0 30px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== PREMIUM CARD ===== */
.ep-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.ep-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(10, 126, 61, 0.2);
}

.ep-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.ep-card .card-icon.green {
    background: var(--green-bg);
    color: var(--green);
}

.ep-card .card-icon.red {
    background: var(--red-bg);
    color: var(--red);
}

.ep-card .card-icon.gold {
    background: #fef9e7;
    color: #d4a017;
}

.ep-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.ep-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.ep-card .badge-timeline {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--green-bg);
    color: var(--green);
}

/* ===== ABOUT ===== */
#about {
    background: var(--off-white);
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-highlight {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-highlight .ah-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.about-feature .icon-circle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.about-feature .icon-circle.green {
    background: var(--green-bg);
    color: var(--green);
}

.about-feature .icon-circle.red {
    background: var(--red-bg);
    color: var(--red);
}

.about-feature h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== WHY CHOOSE US ===== */
.why-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-card .why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: var(--green-bg);
    color: var(--green);
    border: 2px solid rgba(10, 126, 61, 0.1);
}

.why-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ===== PROCESS TIMELINE ===== */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.process-step .step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--green);
    color: var(--white);
}

.process-step .step-num.red {
    background: var(--red);
}

.process-step h5 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.process-connector {
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

/* ===== NOTICE CENTER ===== */
.notice-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    border-left: 4px solid var(--red);
    transition: var(--transition);
    margin-bottom: 16px;
}

.notice-card.pinned {
    border-left-color: var(--green);
    background: var(--green-bg-subtle);
}

.notice-card .notice-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.notice-card .notice-badge.urgent {
    background: var(--red-bg);
    color: var(--red);
}

.notice-card .notice-badge.info {
    background: var(--green-bg);
    color: var(--green);
}

.notice-card .notice-badge.pinned-badge {
    background: #fff3cd;
    color: #856404;
}

.notice-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.notice-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.notice-card .notice-meta {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* ===== PRODUCT SHOWCASE ===== */
.showcase-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.showcase-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.showcase-card .showcase-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.showcase-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.showcase-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== MILESTONES TIMELINE ===== */
.milestone-timeline {
    position: relative;
    padding: 20px 0;
}

.milestone-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border);
}

.milestone-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    position: relative;
    margin-bottom: 35px;
    width: 50%;
}

.milestone-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 40px;
    margin-left: 50%;
}

.milestone-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--green);
    top: 12px;
    right: -8px;
    z-index: 2;
}

.milestone-item:nth-child(even) .milestone-dot {
    left: -8px;
    right: auto;
    background: var(--red);
    box-shadow: 0 0 0 2px var(--red);
}

.milestone-content {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.milestone-content .ms-date {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 6px;
}

.milestone-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.milestone-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== ARCHIVE ===== */
.archive-toolbar {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.archive-search {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    width: 100%;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.archive-search:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(10, 126, 61, 0.1);
}

.filter-btn {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.view-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.view-toggle-btn.active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.sort-select {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-body);
    font-size: 0.85rem;
    cursor: pointer;
}

/* Post card */
.post-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(10, 126, 61, 0.15);
}

.post-card .post-category {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.cat-service {
    background: var(--green-bg);
    color: var(--green);
}

.cat-notice {
    background: var(--red-bg);
    color: var(--red);
}

.cat-shipment {
    background: #e3f2fd;
    color: #1565c0;
}

.cat-sourcing {
    background: #fff3e0;
    color: #e65100;
}

.cat-greeting {
    background: #fce4ec;
    color: #c62828;
}

.cat-milestone {
    background: #f3e5f5;
    color: #7b1fa2;
}

.cat-warehouse {
    background: #e8eaf6;
    color: #283593;
}

.cat-reel {
    background: #e0f7fa;
    color: #00695c;
}

.cat-other {
    background: var(--light-gray);
    color: var(--text-muted);
}

.post-card .post-text {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
}

.post-card .post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    font-size: 0.75rem;
    color: var(--text-light);
    flex-wrap: wrap;
    gap: 8px;
}

.post-card .post-engagement {
    display: flex;
    gap: 12px;
}

.post-card .post-engagement span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-card .btn-view-post {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--green-bg);
    color: var(--green);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.post-card .btn-view-post:hover {
    background: var(--green);
    color: var(--white);
}

/* List view */
.archive-list .post-card {
    flex-direction: row;
    gap: 20px;
}

.archive-list .post-card .post-text {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

/* Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--light-gray) 25%, var(--off-white) 50%, var(--light-gray) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

.skeleton-card {
    height: 200px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Load more */
.btn-load-more {
    background: var(--white);
    color: var(--green);
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--green);
    cursor: pointer;
    transition: var(--transition);
}

.btn-load-more:hover {
    background: var(--green);
    color: var(--white);
}

/* ===== POST DETAIL MODAL ===== */
.modal-content.post-modal {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.post-modal .modal-header {
    border-bottom: 1px solid var(--border-light);
    padding: 20px 24px;
}

.post-modal .modal-body {
    padding: 24px;
}

.post-modal .modal-footer {
    border-top: 1px solid var(--border-light);
}

.post-modal .post-full-text {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-body);
}

/* ===== CONTACT ===== */
.contact-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(10, 126, 61, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-card .c-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-card .c-icon.green {
    background: var(--green-bg);
    color: var(--green);
}

.contact-card .c-icon.red {
    background: var(--red-bg);
    color: var(--red);
}

.contact-card h5 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.contact-card a {
    color: var(--green);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form .form-control {
    background: var(--off-white);
    border: 1px solid var(--border);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(10, 126, 61, 0.1);
    background: var(--white);
}

/* ===== FAQ ===== */
.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item .accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 16px 20px;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: var(--green-bg-subtle);
    color: var(--green);
}

.faq-item .accordion-body {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== LEAD CAPTURE ===== */
.lead-section {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
}

.lead-section h3 {
    font-weight: 800;
    margin-bottom: 12px;
}

.lead-section p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.lead-section .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
}

.lead-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.lead-section .btn-lead {
    background: var(--white);
    color: var(--green);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lead-section .btn-lead:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

footer .footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

footer .footer-brand p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 10px;
}

footer .footer-links h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
}

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

footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

footer .footer-links a:hover {
    color: var(--green-light);
    padding-left: 4px;
}

footer .social-icons {
    display: flex;
    gap: 10px;
}

footer .social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

footer .social-icons a:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

footer .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

footer .footer-bottom .powered-by {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 5px;
}

/* ===== FLOATING ELEMENTS ===== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-green);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-3px);
    background: var(--green-dark);
}

.whatsapp-float {
    position: fixed;
    bottom: 85px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* ===== COUNTERS ===== */
.counter-box {
    text-align: center;
    padding: 25px;
}

.counter-box .counter-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: var(--green-bg);
    color: var(--green);
    border: 2px solid rgba(10, 126, 61, 0.12);
}

.counter-box h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--green);
}

.counter-box p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .milestone-timeline::before {
        left: 20px;
    }

    .milestone-item,
    .milestone-item:nth-child(even) {
        width: 100%;
        padding-left: 45px;
        padding-right: 0;
        margin-left: 0;
    }

    .milestone-dot,
    .milestone-item:nth-child(even) .milestone-dot {
        left: 12px;
        right: auto;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 18px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .counter-box h3 {
        font-size: 2rem;
    }

    .lead-section {
        padding: 30px 20px;
    }
}

/* ===== CEO PROFILE MODAL ===== */
.ceo-profile-btn {
    background: transparent;
    border: 2px solid var(--border);
    padding: 2px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-profile-btn:hover {
    border-color: var(--green);
    transform: scale(1.05);
}

.ceo-avatar-sm {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.ceo-modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.ceo-modal-header {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 40px 30px 30px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.ceo-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    opacity: 0.8;
}

.ceo-modal-close:hover {
    opacity: 1;
}

.ceo-avatar-ring {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    padding: 4px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ceo-avatar-lg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.ceo-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.ceo-title {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.ceo-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.ceo-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.ceo-modal-body {
    padding: 30px;
}

.ceo-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.ceo-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ceo-info-item i {
    color: var(--green);
    font-size: 1.2rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.ceo-info-item small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.ceo-info-item strong,
.ceo-info-item a {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.ceo-social-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.ceo-social-row a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--off-white);
    color: var(--text-body);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ceo-social-row a:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 575.98px) {
    .ceo-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Inner Page Hero */
.inner-hero {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(10, 126, 61, 0.85), rgba(10, 126, 61, 0.85)), url('../images/service_hero.png') center/cover !important;
    color: var(--white);
    text-align: center;
}

.inner-hero-about {
    background: linear-gradient(rgba(10, 126, 61, 0.85), rgba(10, 126, 61, 0.85)), url('../images/about_hero.png') center/cover !important;
}

.inner-hero-warehouse {
    background: linear-gradient(rgba(10, 126, 61, 0.85), rgba(10, 126, 61, 0.85)), url('../images/warehouse_hero.png') center/cover !important;
}

.inner-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.inner-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Warehouse Gallery */
.warehouse-grid {
    column-count: 3;
    column-gap: 20px;
}

@media(max-width: 991px) {
    .warehouse-grid {
        column-count: 2;
    }
}

@media(max-width: 575px) {
    .warehouse-grid {
        column-count: 1;
    }
}

.warehouse-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.warehouse-item img {
    width: 100%;
    transition: var(--transition);
}

.warehouse-item:hover img {
    transform: scale(1.05);
}

/* CEO Quote Message */
.ceo-message-box {
    background: linear-gradient(135deg, var(--green-bg-subtle), var(--green-bg));
    border-left: 4px solid var(--green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 15px 20px;
    margin-bottom: 25px;
    position: relative;
}

.ceo-message-box::before {
    content: '\201C';
    position: absolute;
    top: -5px;
    left: 12px;
    font-size: 3rem;
    color: var(--green);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.ceo-quote {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--green-dark);
    font-style: italic;
    margin-bottom: 4px;
    line-height: 1.5;
}

.ceo-quote:last-child {
    margin-bottom: 0;
}

/* ===== LANGUAGE VISIBILITY UTILITIES ===== */
body:not(.lang-en) .lang-only-en {
    display: none !important;
}

body:not(.lang-bn) .lang-only-bn {
    display: none !important;
}

body:not(.lang-zh) .lang-only-zh {
    display: none !important;
}