/* ===== VARIABLES ===== */
:root {
  --green-dark:  #1a6e2e;
  --green-mid:   #2d9e4e;
  --green-light: #4caf50;
  --green-pale:  #e8f5e9;
  --orange:      #e85d04;
  --whatsapp:    #25D366;
  --text-dark:   #1a1a1a;
  --text-muted:  #666;
  --border:      #e0e0e0;
  --shadow:      0 4px 20px rgba(0,0,0,.08);
  --radius:      12px;
}

/* ===== BASE ===== */
*, html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', sans-serif; color: var(--text-dark); }

/* ===== TOP BAR ===== */
.top-bar { background: var(--green-dark); color: #fff; font-size: 13px; }
.top-bar .top-link { color: rgba(255,255,255,.85); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: color .2s; }
.top-bar .top-link:hover { color: #fff; }

/* ===== NAVBAR ===== */
.main-navbar { background: #fff; box-shadow: 0 2px 15px rgba(0,0,0,.1); padding: 10px 0; transition: box-shadow .3s; }
.main-navbar.scrolled { box-shadow: 0 4px 25px rgba(0,0,0,.15); }
/* Logo image */
.navbar-logo-img {
  height: 70px;
  width: auto;
  max-width: 370px;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 55px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);  /* white logo on dark footer */
}
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.logo-icon-wrap { width: 44px; height: 44px; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; flex-shrink: 0; }
.logo-main-text { font-size: 18px; font-weight: 700; color: var(--green-dark); line-height: 1.1; }
.logo-sub-text  { font-size: 11px; color: var(--text-muted); line-height: 1; }
.main-navbar .nav-link { color: var(--text-dark) !important; font-weight: 500; padding: 8px 14px !important; border-radius: 6px; transition: all .2s; }
.main-navbar .nav-link:hover, .main-navbar .nav-link.active { color: var(--green-dark) !important; background: var(--green-pale); }
.btn-whatsapp-nav { background: var(--whatsapp); color: #fff !important; border-radius: 8px; padding: 8px 16px; font-weight: 600; font-size: 14px; transition: all .2s; border: none; text-decoration: none; }
.btn-whatsapp-nav:hover { background: #1da851; transform: translateY(-1px); color: #fff !important; }

/* ===== MEGA MENU ===== */
.mega-nav-item { position: static; }
.mega-menu { width: 100%; min-width: 700px; border: none; border-top: 3px solid var(--green-dark); border-radius: 0 0 12px 12px; box-shadow: 0 8px 30px rgba(0,0,0,.12); margin-top: 0 !important; padding: 0 !important; }
.mega-menu-inner { padding: 0; }
.mega-col { border-right: 1px solid #f0f0f0; padding: 16px; }
.mega-col:last-child { border-right: none; }
.mega-cat-title { font-size: 13px; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; display: flex; align-items: center; }
.mega-list { list-style: none; padding: 0; margin: 0; }
.mega-list li a { display: block; padding: 5px 0; font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color .15s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mega-list li a:hover { color: var(--green-dark); padding-left: 4px; }
.mega-footer { background: var(--green-pale); padding: 12px 16px; display: flex; gap: 10px; align-items: center; border-top: 1px solid var(--border); border-radius: 0 0 12px 12px; }
.btn-green-sm { background: var(--green-dark); color: #fff; border: none; border-radius: 6px; padding: 7px 16px; font-size: 13px; font-weight: 600; transition: all .2s; }
.btn-green-sm:hover { background: var(--green-mid); color: #fff; }
.btn-wa-sm { background: var(--whatsapp); color: #fff; border: none; border-radius: 6px; padding: 7px 16px; font-size: 13px; font-weight: 600; transition: all .2s; text-decoration: none; }
.btn-wa-sm:hover { background: #1da851; color: #fff; }

/* ===== HERO CAROUSEL ===== */
.carousel-item { height: 520px; }
.slide-1 { background: linear-gradient(135deg, #1a6e2e 0%, #2d9e4e 60%, #4caf50 100%); }
.slide-2 { background: linear-gradient(135deg, #0f4d1e 0%, #1a6e2e 60%, #2d9e4e 100%); }
.slide-3 { background: linear-gradient(135deg, #2d9e4e 0%, #4caf50 60%, #81c784 100%); }
.carousel-item .container { height: 100%; }
.slide-text { color: #fff; }
.slide-badge { display: inline-block; background: rgba(255,255,255,.25); color: #fff; padding: 5px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; letter-spacing: 1px; margin-bottom: 16px; text-transform: uppercase; }
.slide-text h1 { font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,.15); }
.slide-text .lead { color: rgba(255,255,255,.9); }
.btn-whatsapp { background: var(--whatsapp); color: #fff !important; border: none; border-radius: 8px; font-weight: 600; transition: all .2s; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); color: #fff; }
.slide-bag-icon { width: 220px; height: 220px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; font-size: 70px; backdrop-filter: blur(5px); border: 2px solid rgba(255,255,255,.3); }
.slide-bag-icon p { font-size: 14px; font-weight: 600; margin: 10px 0 0; text-align: center; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--green-dark); }
.stat-item strong { display: block; font-size: 28px; font-weight: 800; color: #a5d6a7; }
.stat-item span   { font-size: 13px; color: rgba(255,255,255,.8); }

/* ===== SECTION COMMON ===== */
.section-tag { display: inline-block; background: var(--green-pale); color: var(--green-dark); padding: 4px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.section-title { font-size: 32px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }

/* ===== ABOUT ===== */
.about-section, .about-hero { background: #fff; }
.mission-point { font-size: 14px; font-weight: 500; color: var(--text-dark); display: flex; align-items: flex-start; gap: 6px; }
.mission-point i { margin-top: 2px; flex-shrink: 0; }

/* Product Range Cards */
.about-range-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; transition: all .2s; }
.about-range-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-mid); }
.about-range-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.about-range-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }

/* Founder Section */
.founder-section { background: #f9f9f9; }
.founder-photo { width: 280px; height: 320px; object-fit: cover; object-position: top; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,.15); border: 4px solid #fff; }
.founder-placeholder { width: 280px; height: 320px; border-radius: 16px; background: var(--green-pale); border: 2px dashed var(--green-mid); display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.founder-placeholder i { font-size: 80px; color: var(--green-mid); opacity: .5; }
.feature-box { display: flex; gap: 12px; align-items: flex-start; background: var(--green-pale); padding: 14px; border-radius: var(--radius); }
.feature-box i { color: var(--green-dark); font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.feature-box strong { font-size: 14px; font-weight: 700; }
.feature-box p { font-size: 12px; color: var(--text-muted); margin: 0; }
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-img-card { border-radius: var(--radius); padding: 30px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; font-size: 40px; text-align: center; min-height: 140px; }
.about-img-card span { font-size: 14px; font-weight: 600; margin-top: 10px; }
.bg-green-1 { background: linear-gradient(135deg, #1a6e2e, #2d9e4e); }
.bg-green-2 { background: linear-gradient(135deg, #0f4d1e, #1a6e2e); }
.bg-green-3 { background: linear-gradient(135deg, #2d9e4e, #4caf50); }
.bg-green-4 { background: linear-gradient(135deg, #388e3c, #66bb6a); }

/* ===== CATEGORY STRIP ===== */
.category-strip { background: var(--green-pale); }
.cat-card { display: flex; flex-direction: column; align-items: center; gap: 6px; background: #fff; border-radius: var(--radius); padding: 20px; text-align: center; border: 2px solid transparent; transition: all .2s; }
.cat-card:hover { border-color: var(--green-dark); transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card i { font-size: 30px; color: var(--green-dark); }
.cat-card span { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.cat-card small { font-size: 12px; color: var(--text-muted); }

/* ===== PRODUCTS SECTION ===== */
.products-section { background: #f5f5f5; }
.filter-btn { border: 2px solid var(--green-dark); color: var(--green-dark); background: transparent; border-radius: 25px; padding: 8px 22px; font-weight: 600; font-size: 14px; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--green-dark); color: #fff; }

/* Product Card */
.product-card-link .product-card, .product-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: all .25s; height: 100%; display: flex; flex-direction: column; border: 2px solid transparent; }
.product-card-link:hover .product-card, .product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(26,110,46,.15); border-color: var(--green-mid); }
.product-img { height: 180px; display: flex;  justify-content: center; position: relative; overflow: hidden; }
.bag-icon-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; width: 100%; gap: 8px; }
.bag-icon-placeholder span { font-size: 12px; font-weight: 600; color: #fff; opacity: .9; }
.product-badge { position: absolute; top: 10px; left: 10px; background: var(--green-dark); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; }
.product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); line-height: 1.3; }
.product-size { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.price-table { border-collapse: collapse; }
.price-table th { font-size: 11px; color: var(--text-muted); font-weight: 600; padding: 4px 6px; border-bottom: 1px solid var(--border); text-align: center; }
.price-table td { font-size: 12px; padding: 5px 6px; border-bottom: 1px solid #f0f0f0; text-align: center; }
.price-table td.price { color: var(--orange); font-weight: 700; }
.price-table tr:last-child td { border-bottom: none; }
.btn-view { background: var(--green-dark); color: #fff; border: none; border-radius: 8px; padding: 9px; font-weight: 600; font-size: 13px; width: 100%; margin-top: auto; transition: all .2s; cursor: pointer; }
.btn-view:hover { background: var(--green-mid); }

/* ===== PRODUCTS PAGE SIDEBAR ===== */
.products-page-header { background: var(--green-pale); border-bottom: 1px solid var(--border); }
.filter-sidebar { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); position: sticky; top: 80px; }
.filter-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-dark); margin-bottom: 12px; }
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list li { margin-bottom: 4px; }
.filter-list li a { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: 8px; text-decoration: none; font-size: 14px; color: var(--text-muted); transition: all .2s; }
.filter-list li a:hover, .filter-list li a.active { background: var(--green-pale); color: var(--green-dark); font-weight: 600; }
.badge-count { background: var(--green-light); color: #fff; border-radius: 12px; padding: 2px 8px; font-size: 11px; font-weight: 700; }
.filter-info .info-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.text-green { color: var(--green-dark); }

/* ===== WHY BAR ===== */
.why-bar { background: var(--green-pale); }
.why-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 10px; }
.why-item i { font-size: 24px; color: var(--green-dark); }
.why-item span { font-size: 12px; font-weight: 600; color: var(--text-dark); }

/* ===== CONTACT ===== */
.contact-header { background: var(--green-pale); }
.contact-info-box { background: var(--green-pale); padding: 28px; border-radius: var(--radius); }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-ico { width: 44px; height: 44px; background: var(--green-dark); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; flex-shrink: 0; }
.contact-item strong { font-size: 13px; font-weight: 700; display: block; }
.contact-item p { margin: 2px 0 0; font-size: 14px; }
.contact-item p a { color: var(--green-dark); text-decoration: none; }
.btn-whatsapp-large { background: var(--whatsapp); color: #fff !important; border-radius: 10px; padding: 14px 24px; font-size: 16px; font-weight: 700; transition: all .2s; }
.btn-whatsapp-large:hover { background: #1da851; transform: translateY(-2px); color: #fff; }
.contact-quickinfo { background: #fff; border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.quick-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.quick-item i { color: var(--green-dark); width: 16px; }
.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.contact-form-wrap .form-control, .contact-form-wrap .form-select { border: 2px solid var(--border); border-radius: 8px; padding: 12px 14px; font-size: 14px; transition: border-color .2s; }
.contact-form-wrap .form-control:focus, .contact-form-wrap .form-select:focus { border-color: var(--green-mid); box-shadow: none; }
.map-section { height: 220px; }
.map-placeholder { height: 100%; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; gap: 8px; }
.map-placeholder i { font-size: 40px; }
.map-placeholder h5 { margin: 0; font-weight: 700; }
.map-placeholder p { margin: 0; opacity: .8; font-size: 14px; }

/* ===== ABOUT PAGE ===== */
.stat-box { background: var(--green-pale); border-radius: var(--radius); padding: 16px; text-align: center; }
.stat-box strong { display: block; font-size: 28px; font-weight: 800; color: var(--green-dark); }
.stat-box span { font-size: 13px; color: var(--text-muted); }
.mission-section { background: #f5f5f5; }
.mission-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.mission-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; margin-bottom: 16px; }
.mission-icon.vision { background: linear-gradient(135deg, #1565c0, #1976d2); }
.mission-list { list-style: none; padding: 0; margin-top: 12px; }
.mission-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.mission-list i { color: var(--green-dark); }
.why-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); text-align: center; transition: all .2s; height: 100%; }
.why-card:hover { transform: translateY(-4px); }
.why-icon { width: 56px; height: 56px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--green-dark); font-size: 22px; }
.range-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: block; transition: all .2s; height: 100%; }
.range-card:hover { transform: translateY(-4px); border-color: var(--green-dark); }
.range-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; margin-bottom: 14px; }
.range-card h5 { font-weight: 700; color: var(--text-dark); margin-bottom: 8px; font-size: 15px; }
.range-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.range-link { font-size: 13px; font-weight: 600; color: var(--green-dark); }

/* Timeline */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--green-light); transform: translateX(-50%); }
.timeline-item { display: flex; justify-content: flex-end; padding-right: calc(50% + 24px); margin-bottom: 24px; }
.timeline-item.right { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 24px); }
.timeline-content { background: #fff; border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow); max-width: 280px; position: relative; }
.timeline-year { display: inline-block; background: var(--green-dark); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 4px; margin-bottom: 8px; }
.timeline-content h5 { font-weight: 700; margin-bottom: 4px; font-size: 15px; }
.timeline-content p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); }
.text-white-80 { color: rgba(255,255,255,.85); }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-section { background: #fff; }
/* Thumbnail Strip */
.thumb-strip { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.thumb-item { width: 70px; height: 70px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; cursor: pointer; border: 3px solid transparent; transition: all .2s; opacity: .7; }
.thumb-item:hover { opacity: 1; border-color: var(--green-dark); }
.thumb-item.active { opacity: 1; border-color: var(--green-dark); box-shadow: 0 0 0 3px var(--green-pale); }
/* Main Image */
.main-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 360px; }
.main-img-slide { display: none; align-items: center; justify-content: center; flex-direction: column; gap: 16px; color: #fff; min-height: 360px; padding: 20px; }
.main-img-slide.active { display: flex; }
.main-img-slide i { font-size: 110px; }
.main-img-slide span { font-size: 16px; font-weight: 600; opacity: .9; text-align: center; }
/* Detail Badges */
.detail-badge { display: inline-flex; align-items: center; background: var(--green-pale); color: var(--green-dark); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; }
/* Features */
.product-features { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag { display: inline-flex; align-items: center; background: #f9fbe7; color: #558b2f; border: 1px solid #c5e1a5; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.feature-tag i { color: #558b2f; }
/* Product Info Box */
.product-info-box { background: #fff; border: 2px solid var(--border); border-radius: var(--radius); padding: 24px; position: sticky; top: 80px; }
.cat-tag { display: inline-block; background: var(--green-pale); color: var(--green-dark); padding: 3px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 8px; }
.product-detail-title { font-size: 22px; font-weight: 800; margin-bottom: 6px; line-height: 1.3; }
.starting-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.from-label { font-size: 13px; color: var(--text-muted); }
.from-price { font-size: 30px; font-weight: 800; color: var(--orange); }
.per-bag { font-size: 14px; color: var(--text-muted); }
/* Detail Price Table */
.detail-price-table { border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.detail-price-table thead { background: var(--green-dark); color: #fff; }
.detail-price-table thead th { padding: 10px 12px; font-weight: 600; font-size: 13px; }
.detail-price-table tbody td { padding: 10px 12px; font-size: 14px; border-bottom: 1px solid var(--border); }
.detail-price-table tbody tr:last-child td { border-bottom: none; }
.price-cell { color: var(--orange); font-weight: 700; font-size: 16px; }
.moq-badge { background: var(--green-dark); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 4px; }
.low-badge  { background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 4px; }
.btn-wa-table { background: var(--whatsapp); color: #fff; border: none; border-radius: 6px; width: 34px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all .2s; }
.btn-wa-table:hover { background: #1da851; color: #fff; transform: scale(1.1); }
/* Detail WhatsApp Buttons */
.btn-whatsapp-detail { background: var(--whatsapp); color: #fff !important; border: none; border-radius: 10px; padding: 14px 20px; font-size: 16px; font-weight: 700; width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all .2s; margin-bottom: 10px; }
.btn-whatsapp-detail:hover { background: #1da851; transform: translateY(-2px); color: #fff; }
.btn-see-logo { background: var(--green-dark); color: #fff !important; border: none; border-radius: 10px; padding: 14px 20px; font-size: 15px; font-weight: 700; width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all .2s; }
.btn-see-logo:hover { background: var(--green-mid); color: #fff; }
/* Detail Trust Badges */
.detail-features { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.detail-feature { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; min-width: 72px; padding: 10px 6px; background: var(--green-pale); border-radius: 8px; }
.detail-feature i { color: var(--green-dark); font-size: 18px; }
.detail-feature span { font-size: 11px; font-weight: 600; text-align: center; color: var(--text-dark); }

/* ===== BUTTONS ===== */
.btn-green { background: var(--green-dark); color: #fff; border: none; border-radius: 10px; padding: 12px 24px; font-size: 15px; font-weight: 700; transition: all .2s; }
.btn-green:hover { background: var(--green-mid); color: #fff; }
.btn-outline-green { border: 2px solid var(--green-dark); color: var(--green-dark); background: transparent; border-radius: 8px; padding: 8px 20px; font-weight: 600; font-size: 14px; transition: all .2s; }
.btn-outline-green:hover { background: var(--green-dark); color: #fff; }

/* ===== FOOTER ===== */
.footer { background: #0f2d1a; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #a5d6a7; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; color: #a5d6a7; font-size: 14px; margin-bottom: 8px; }
.footer-contact-item i { color: var(--green-light); width: 16px; }
.footer-social { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: all .2s; }
.footer-social.wa { background: var(--whatsapp); color: #fff; }
.footer-social.ph { background: var(--green-dark); color: #fff; }
.footer-social.em { background: #1565c0; color: #fff; }
.footer-social:hover { transform: translateY(-3px); opacity: .9; }
.footer-contact-item { align-items: flex-start; }
.footer-phone-link { color: #a5d6a7; text-decoration: none; transition: color .2s; }
.footer-phone-link:hover { color: #fff; }
.footer-policy-link { color: #a5d6a7; font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-policy-link:hover { color: #fff; text-decoration: underline; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none; transition: all .2s; animation: pulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ===== BREADCRUMB ===== */
.breadcrumb-wrap { background: var(--green-pale); border-bottom: 1px solid var(--border); }
.breadcrumb-item a { color: var(--green-dark); text-decoration: none; }
.breadcrumb-item.active { color: var(--text-muted); }

/* ===== BAG SHOWCASE ===== */
.bag-showcase-section { overflow: hidden; }
.bag-showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.bag-showcase-item { position: relative; overflow: hidden; cursor: pointer; }
.bag-showcase-item img { width: 100%; height: 500px; object-fit: cover; display: block; transition: transform .5s ease; }
.bag-showcase-item:hover img { transform: scale(1.05); }
.bag-showcase-tag { position: absolute; top: 30px; right: 20px; writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); font-size: 22px; font-weight: 800; letter-spacing: 4px; color: rgba(255,255,255,.25); text-transform: uppercase; pointer-events: none; }
.bag-showcase-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%); color: #fff; font-size: 20px; font-weight: 800; text-align: center; text-transform: uppercase; letter-spacing: 2px; padding: 40px 16px 20px; }
.blog-card-img{width: 100%;}
/* ===== POLICY PAGES (Terms & Privacy) ===== */
.policy-hero { background: var(--green-pale); border-bottom: 1px solid var(--border); }
.policy-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.policy-section { padding: 28px 36px; border-bottom: 1px solid #f0f0f0; }
.policy-section:last-child { border-bottom: none; }
.policy-heading { font-size: 18px; font-weight: 700; color: var(--green-dark); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.policy-num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; background: var(--green-dark); color: #fff; border-radius: 50%; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.policy-section p { color: var(--text-muted); font-size: 15px; line-height: 1.75; margin-bottom: 10px; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-list { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 8px; }
.policy-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-muted); }
.policy-list li i { color: var(--green-dark); margin-top: 3px; flex-shrink: 0; }
.policy-highlight { background: var(--green-pale); }
.policy-highlight .policy-heading { color: var(--green-dark); }
.policy-contact-box { padding: 28px 36px; background: #f9f9f9; border-top: 3px solid var(--green-dark); }
.policy-contact-box h5 { font-size: 16px; font-weight: 700; color: var(--green-dark); margin-bottom: 16px; }
.policy-contact-grid { display: flex; flex-direction: column; gap: 10px; }
.policy-contact-grid div { font-size: 14px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 8px; }
.policy-contact-grid i { color: var(--green-dark); margin-top: 2px; flex-shrink: 0; }
.policy-contact-grid a { color: var(--green-dark); text-decoration: none; }
.policy-contact-grid a:hover { text-decoration: underline; }
@media (max-width: 576px) { .policy-section { padding: 20px 18px; } .policy-contact-box { padding: 20px 18px; } }

/* ===== OUR CLIENTS ===== */
.clients-section { background: #f9f9f9; }
.clients-track-wrap { overflow: hidden; position: relative; }
.clients-track-wrap::before,
.clients-track-wrap::after { content: ''; position: absolute; top: 0; width: 80px; height: 100%; z-index: 2; pointer-events: none; }
.clients-track-wrap::before { left: 0; background: linear-gradient(to right, #f9f9f9, transparent); }
.clients-track-wrap::after  { right: 0; background: linear-gradient(to left,  #f9f9f9, transparent); }
.clients-track { display: flex; gap: 32px; align-items: center; width: max-content; animation: clientsScroll 22s linear infinite; }
.clients-track:hover { animation-play-state: paused; }
.client-logo-item { flex-shrink: 0; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 14px 28px; display: flex; align-items: center; justify-content: center; height: 90px; min-width: 140px; transition: box-shadow .2s; }
.client-logo-item:hover { box-shadow: var(--shadow); }
.client-logo-item img { max-height: 55px; max-width: 120px; width: auto; object-fit: contain; filter: grayscale(40%); transition: filter .2s; }
.client-logo-item:hover img { filter: grayscale(0%); }
@keyframes clientsScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== RESPONSIVE ===== */
@media (min-width: 992px) { .col-lg-2-4 { flex: 0 0 auto; width: 20%; } .product-img { height: 260px; } }
@media (max-width: 992px) { .mega-menu { min-width: 100%; } }
@media (max-width: 768px) {
  .carousel-item { height: 420px; }
  .slide-text h1 { font-size: 1.8rem; }
  .section-title { font-size: 24px; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item.right { justify-content: flex-start; padding: 0 0 0 50px; }
  .timeline-content { max-width: 100%; }
  .main-img-wrap { min-height: 240px; }
  .main-img-slide { min-height: 240px; }
  .main-img-slide i { font-size: 80px; }
  .thumb-item { width: 56px; height: 56px; font-size: 18px; }
  .product-info-box { position: static; }
}
@media (max-width: 576px) {
  .carousel-item { height: 370px; }
  .slide-text h1 { font-size: 1.5rem; }
}

/* ===== PRODUCT CONTACT / QUOTE SECTION ===== */
.product-contact-section { background: var(--green-pale); }
.contact-detail-item {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px;
}
.contact-detail-item > i {
  width: 38px; height: 38px; background: var(--green-dark); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0; margin-top: 2px;
}
.contact-detail-item .label { display: block; font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .5px; }
.contact-detail-item .value { font-weight: 600; color: var(--green-dark); font-size: 15px; text-decoration: none; }
.contact-detail-item .value:hover { text-decoration: underline; }
.product-quote-card {
  background: #fff; border-radius: 16px; padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.product-quote-card .form-control,
.product-quote-card .form-select {
  border: 2px solid var(--border); border-radius: 8px;
  padding: 10px 14px; font-size: 14px; transition: border-color .2s;
}
.product-quote-card .form-control:focus,
.product-quote-card .form-select:focus { border-color: var(--green-mid); box-shadow: none; }

/* ===== RELATED PRODUCTS ===== */
.related-section { background: #f5f5f5; }

/* ===== ENQUIRY FORM SECTION ===== */
.enquiry-section { background: #fff; }
.enquiry-form .eq-input {
  border: 2px solid var(--border); border-radius: 8px;
  padding: 12px 14px; font-size: 14px;
  transition: border-color .2s; background: #fafafa;
}
.enquiry-form .eq-input:focus { border-color: var(--green-mid); box-shadow: none; background: #fff; }
.enquiry-form .form-check-input:checked { background-color: var(--green-dark); border-color: var(--green-dark); }
.text-green-link { color: var(--green-dark); font-weight: 600; }

/* Illustration right side */
.enquiry-illus { background: var(--green-pale); border-radius: 20px; padding: 32px 28px; text-align: center; }
.illus-card { display: flex; align-items: flex-start; gap: 16px; background: #fff; border-radius: 14px; padding: 20px; margin-bottom: 20px; box-shadow: var(--shadow); text-align: left; }
.illus-avatar { width: 64px; height: 64px; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; flex-shrink: 0; }
.illus-bubble p { font-size: 14px; color: var(--text-muted); margin: 0 0 4px; font-style: italic; line-height: 1.5; }
.illus-bubble span { font-size: 12px; font-weight: 700; color: var(--green-dark); }
.illus-points { text-align: left; margin-bottom: 20px; }
.illus-pt { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.illus-pt i { color: var(--green-dark); font-size: 16px; }
.illus-wa { background: var(--whatsapp); color: #fff !important; border-radius: 10px; padding: 13px 20px; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all .2s; }
.illus-wa:hover { background: #1da851; transform: translateY(-2px); }
.illus-wa i { font-size: 20px; }

/* ===== CLIENTS / TESTIMONIALS ===== */
.clients-section { background: #f5f5f5; }
.client-logo-card { background: #fff; border-radius: var(--radius); padding: 18px 12px; text-align: center; box-shadow: var(--shadow); transition: all .2s; }
.client-logo-card:hover { transform: translateY(-4px); }
.client-logo-card i { font-size: 28px; color: var(--green-dark); display: block; margin-bottom: 8px; }
.client-logo-card strong { display: block; font-size: 18px; font-weight: 800; color: var(--text-dark); line-height: 1; }
.client-logo-card span { font-size: 12px; color: var(--text-muted); }
/* Testimonial Cards */
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); height: 100%; border-top: 4px solid var(--green-mid); transition: all .2s; }
.testimonial-card:hover { transform: translateY(-4px); }
.test-stars i { color: #f59e0b; font-size: 14px; }
.test-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 10px 0 16px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; flex-shrink: 0; }
.test-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.test-author span { font-size: 12px; color: var(--text-muted); }

/* ===== SEO CONTENT SECTION ===== */
.seo-content-section { background: #f9f9f9; }
.seo-h2 { font-size: 26px; font-weight: 800; color: var(--text-dark); margin-bottom: 14px; line-height: 1.3; }
.seo-h3 { font-size: 20px; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.seo-h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; border-left: 3px solid var(--green-mid); padding-left: 10px; }
.seo-h5 { font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.seo-content-section p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 10px; }
.seo-list { padding-left: 20px; }
.seo-list li { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 6px; }
/* SEO Sidebar */
.seo-sidebar { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.seo-sidebar-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--green-pale); }
.seo-table { width: 100%; border-collapse: collapse; }
.seo-table tr { border-bottom: 1px solid #f0f0f0; }
.seo-table tr:last-child { border-bottom: none; }
.seo-table td { padding: 8px 4px; font-size: 13px; color: var(--text-muted); }
.seo-table td:first-child { width: 55%; }
.seo-table td strong { color: var(--text-dark); }
/* City tags */
.city-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.city-tag { background: var(--green-pale); color: var(--green-dark); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
