/* ═══════════════════════════════════════════════════════════
   GLOBAL CSS — shared across all pages
═══════════════════════════════════════════════════════════ */

:root {
  --green-dark:  #076550;
  --green-mid:   #1a5c40;
  --green-btn:   #1e7a50;
  --green-light: #e8f5ee;
  --teal:        #2fc89e;
  --teal-light:  #00D2A329;
  --beige:       #f5f0e8;
  --text-dark:   #1a1a1a;
  --text-muted:  #6c757d;
  --white:       #ffffff;
  --border:      #e0e0e0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); background: #fff; }
a { text-decoration: none; color: inherit; }
h2 { font-size: 2.2rem; font-weight: 400; margin: 8px 0 20px; color: var(--text-dark); }
.sub { font-size: .9rem; color: var(--text-muted); margin-top: 6px; margin-bottom: 30px; }
.label-tag { font-size: 1rem; font-weight: 400; letter-spacing: 2px; color: #076550; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar-wrapper { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 12px 24px; }
.navbar { background: #fff; border-radius: 16px; box-shadow: 0 2px 12px rgba(0,0,0,.10); padding: 10px 24px; margin: 0; transition: box-shadow .3s; position: relative; overflow: hidden; }
.navbar-nav .nav-link { font-size: .875rem; font-weight: 500; color: #333; padding: 6px 14px; }
.navbar-nav .nav-link:hover { color: var(--green-btn); }
.btn-signin { background: linear-gradient(90deg, #0C7031 0%, #11F1C4 100%); color: #fff; border: none; border-radius: 8px; padding: 8px 22px; font-size: .875rem; font-weight: 600; }
.btn-signin:hover { background: var(--green-dark); color: #fff; }

.desktop-search { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; width: 200px; }
.desktop-search input { border: none; padding: 6px 12px; font-size: .85rem; outline: none; width: 100%; font-family: 'Open Sans', sans-serif; }
.desktop-search .search-icon-btn { background: none; border: none; padding: 6px 10px; cursor: pointer; color: #888; }

.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }
.hamburger-icon { display: flex; flex-direction: column; gap: 5px; width: 22px; cursor: pointer; }
.hamburger-icon span { display: block; height: 2px; background: #333; border-radius: 2px; transition: all .3s ease; }
.hamburger-icon.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-icon.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-icon.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-search-trigger { display: none; background: none; border: none; padding: 4px 8px; cursor: pointer; color: #333; font-size: 1.1rem; }
.mobile-search-bar { display: none; position: absolute; inset: 0; background: #fff; border-radius: 16px; align-items: center; padding: 0 16px; gap: 10px; z-index: 10; }
.mobile-search-bar.active { display: flex; }
.mobile-search-bar .back-btn { background: none; border: none; padding: 6px; cursor: pointer; color: #333; font-size: 1.2rem; flex-shrink: 0; }
.mobile-search-bar input { flex: 1; border: none; outline: none; font-size: .95rem; font-family: 'Open Sans', sans-serif; color: #333; background: transparent; }
.mobile-search-bar input::placeholder { color: #aaa; }
.mobile-search-bar .clear-btn { background: none; border: none; padding: 6px; cursor: pointer; color: #aaa; font-size: 1rem; flex-shrink: 0; }

@media (max-width: 991px) {
  .mobile-search-trigger { display: flex; align-items: center; }
  .navbar .desktop-search { display: none; }
}
@media (min-width: 992px) {
  .mobile-search-trigger { display: none; }
}

/* ── BUY/SELL CARD ────────────────────────────────────────── */
.buy-sell-card { border: 1px solid var(--border); border-radius: 16px; padding: 22px 20px; background: #fff; }
.buy-sell-card .live-label { font-size: .68rem; font-weight: 700; letter-spacing: 1.2px; color: #555; text-transform: uppercase; margin-bottom: 6px; }
.buy-sell-card .price-display { font-size: 2.4rem; font-weight: 800; color: #1a1a1a; margin-bottom: 4px; line-height: 1.1; }
.buy-sell-card .change-sm { font-size: .82rem; color: #444; margin-bottom: 18px; }
.bs-btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.btn-buy  { background: var(--teal-light); color: var(--green-dark); border: 1.5px solid var(--teal-light); border-radius: 10px; padding: 11px 0; font-weight: 700; font-size: .92rem; width: 100%; display: flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer; }
.btn-sell { background: #fff; color: var(--text-dark); border: 0.82px solid #D1D1D6; border-radius: 10px; padding: 11px 0; font-weight: 700; font-size: .92rem; width: 100%; display: flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer; box-shadow: 0 0 14.6px 0 rgba(0,0,0,.12); }
.qty-control { display: flex; align-items: center; justify-content: space-between; border: 1.5px solid var(--border); border-radius: 10px; padding: 6px 10px; margin: 0 0 8px; }
.qty-control span { font-weight: 700; font-size: 1rem; }
.qty-btn { background: #f0f0f0; border: none; font-size: 1.2rem; font-weight: 500; cursor: pointer; color: #333; line-height: 1; width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.qty-btn:hover { background: #e0e0e0; }
.qty-min-note { font-size: .75rem; color: var(--text-muted); text-align: center; margin-bottom: 16px; }
.btn-whatsapp { background: linear-gradient(94.06deg, #0C7031 52.31%, #11F1C4 113.13%); color: #fff; border: none; border-radius: 12px; padding: 14px; font-weight: 600; font-size: .88rem; width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; margin-bottom: 10px; }
.btn-whatsapp:hover { opacity: .92; }
.btn-whatsapp .wa-icon { width: 22px; height: 22px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; }
.btn-inquiry { background: #f5f0e8; color: #444; border: none; border-radius: 12px; padding: 14px; font-weight: 500; font-size: .88rem; width: 100%; cursor: pointer; }
.btn-inquiry:hover { background: #ede8df; }

/* ── STOCK LIST CARD ──────────────────────────────────────── */
.stock-list-card { background: #f4f4f6; border-radius: 16px; padding: 10px; margin-top: 16px; max-height: 320px; overflow-y: auto; }
.stock-row { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 12px; padding: 10px 14px; margin-bottom: 8px; }
.stock-row:last-child { margin-bottom: 0; }
.stock-row .slogo img { width: 50px; height: auto; }
.stock-row .sinfo { flex: 1; }
.stock-row .sinfo .sname { font-size: 13px; font-weight: 600; color: #1a1a1a; line-height: 1.2; }
.stock-row .sinfo .smeta { font-size: 10px; font-weight: 600; color: rgba(118,118,128,.8); margin-top: 1px; }
.stock-row .sright { display: flex; align-items: center; gap: 5px; }
.stock-row .sright .activity-icon { font-size: .8rem; }
.stock-row .sright .sup   { font-size: .82rem; font-weight: 500; color: #16A218; }
.stock-row .sright .sdown { font-size: .82rem; font-weight: 500; color: #FF3B30; }

/* ── ABOUT ────────────────────────────────────────────────── */
.about-section { padding: 20px 0; background: #fff; }
.about-section p { font-size: 15px; line-height: 32px; color: rgba(0,0,0,.6); margin-bottom: 16px; font-weight: 400; }

/* ── CHART / PRICE MOVEMENT ───────────────────────────────── */
.chart-section { padding: 30px 0; background: #fff; }
.chart-section h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.period-tabs .btn { background: var(--beige); color: #555; border: none; border-radius: 8px; padding: 5px 14px; font-size: .8rem; font-weight: 500; margin: 0 2px; }
.period-tabs .btn.active { background: var(--green-dark); color: #fff; }
.chart-canvas-wrap { position: relative; height: 260px; }

/* ── FINANCIALS ───────────────────────────────────────────── */
.financials-section { padding: 60px 0; background: #fff; }
.financials-section .desc { font-size: .82rem; color: #666; margin-bottom: 24px; max-width: 800px; }
.fin-period-wrap { display: flex; align-items: center; gap: 0; margin-bottom: 0; }
.fin-period-btn { border: 1px solid var(--border); background: #fff; color: #555; font-size: .88rem; font-weight: 600; padding: 10px 40px; cursor: pointer; transition: all .2s; white-space: nowrap; }
.fin-period-btn:first-child { border-radius: 10px 0 0 10px; }
.fin-period-btn:nth-child(2) { border-radius: 0 10px 10px 0; border-left: none; }
.fin-period-btn.active { background: var(--teal-light); color: var(--green-dark); border-color: var(--teal-light); }
.fin-period-line { flex: 1; height: 1px; background: var(--border); margin-left: 16px; }
.fin-card { border: 1px solid var(--border); border-radius: 0 12px 12px 12px; margin-top: 20px; overflow: hidden; }
.fin-subtabs { display: flex; border-bottom: 1px solid var(--border); background: #fff; }
.fin-sub-btn { background: #fff; border: none; border-bottom: 3px solid transparent; padding: 12px 24px; font-size: .85rem; font-weight: 600; color: #555; cursor: pointer; transition: all .2s; }
.fin-sub-btn.active { color: var(--green-dark); border-bottom-color: #076550; }
.fin-sub-btn:hover:not(.active) { color: var(--green-dark); background: var(--green-light); }
.fin-table-wrap { display: none; }
.fin-table-wrap.active { display: block; }
.fin-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.fin-table thead tr { background: var(--green-dark); color: #fff; }
.fin-table thead th { padding: 10px; font-weight: 700; text-align: left; color: #E7FCF7; }
.fin-table tbody tr.highlight { background: var(--beige); }
.fin-table tbody tr.section-head td { font-weight: 700; padding: 10px 18px; font-size: .78rem; color: var(--green-dark); letter-spacing: .3px; background: #F5EFE1; }
.fin-table tbody tr.total-row td { font-weight: 700; color: var(--green-btn); }
.fin-table tbody td { padding: 10px 18px; }
.fin-table tbody tr { border: 1px solid #ddd; }

/* ── NEW ARRIVALS ─────────────────────────────────────────── */
.arrivals-section { padding: 30px 0; }
.filter-tags { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.filter-tags .tag { background: #E8DEF8; border: none; border-radius: 20px; padding: 6px 18px; font-size: .8rem; font-weight: 600; cursor: pointer; color: #4A4459; }
.filter-tags .tag.active { background: var(--green-dark); color: #fff; }
.stock-card { display: flex; align-items: center; gap: 15px; padding: 14px 12px; transition: box-shadow .2s; border-left: 2px solid #D4D4D3; }
.stock-card:hover { box-shadow: 0 4px 22.3px 0 rgba(0,0,0,.25); border-left: 2px solid #076550; background: var(--green-light); }
.stock-card.selected { background: var(--teal-light); border-color: var(--teal); }
.stock-card .logo { width: 42px; object-fit: contain; display: flex; align-items: center; justify-content: center; }
.stock-card .sinfo h6 { font-size: .85rem; font-weight: 700; margin: 0; }
.stock-card .sinfo .price { font-size: .8rem; color: #333; font-weight: 500; }
.stock-card .sinfo .up { font-size: .75rem; color: var(--green-btn); font-weight: 600; }

/* ── HOW TO BUY ───────────────────────────────────────────── */
.howtobuy-section { padding: 60px 0 40px; background: #fff; }
.howtobuy-section h5 { font-size: 32px; color: #403434; margin-bottom: 4px; font-weight: 600; }
.howtobuy-section h2 { font-size: 3rem; font-weight: 400; margin-bottom: 40px; color: #064F3E; }
.step-num { font-size: 20px; font-weight: 600; color: #403434; margin-bottom: 8px; }
.step-title { font-size: 1.2rem; font-weight: 600; color: #064F3E; margin-bottom: 8px; }
.step-desc { font-size: 1rem; color: #064F3E; line-height: 24px; font-weight: 400; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { padding: 60px 0 80px; background: #fff; }
.faq-heading-row { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 48px; }
.faq-big-wrap { flex-shrink: 0; }
.faq-big { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 500; line-height: 1.0; color: #141414; letter-spacing: -1px; }
.faq-label-wrap { flex-shrink: 0; }
.faq-sub { font-size: .68rem; letter-spacing: 1.5px; color: #999; font-weight: 600; line-height: 1.7; text-transform: uppercase; margin: 0; }
.faq-list { border-top: 1px solid #e0e0e0; }
.faq-item { border-bottom: 1px solid #e0e0e0; }
.faq-btn { width: 100%; background: none; border: none; padding: 20px 4px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; text-align: left; }
.faq-btn span:first-child { font-size: .82rem; font-weight: 700; letter-spacing: .8px; color: #222; text-transform: uppercase; }
.faq-icon { font-size: 1.2rem; font-weight: 300; color: #222; line-height: 1; transition: transform .2s; flex-shrink: 0; }
.faq-body { display: none; padding: 0 4px 20px; font-size: .85rem; color: #555; line-height: 1.7; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { background: url(/img/testi-bg.png); position: relative; overflow: hidden; padding: 80px 0; }
.testi-card { background: rgba(255,255,255,.6); backdrop-filter: blur(6px); border-radius: 16px; padding: 24px; }
.testi-card .quote { width: 20px; opacity: .5; }
.testi-card p { font-size: .85rem; line-height: 1.7; color: #4B5563; margin: 12px 0 16px; }
.testi-card .author { display: flex; align-items: center; gap: 10px; }
.testi-card .author img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.testi-card .author .name { font-size: .85rem; font-weight: 700; }
.testi-card .author .role { font-size: .75rem; color: var(--text-muted); }
.owl-dots { display: none; }
.owl-dots .owl-dot span { background: #ccc !important; }
.owl-dots .owl-dot.active span { background: var(--green-dark) !important; }

/* ── JOIN US ──────────────────────────────────────────────── */
.join-section { background: #fff; padding: 40px 0 60px; }
.join-inner { position: relative; border-radius: 20px; overflow: hidden; min-height: 340px; display: flex; align-items: center; justify-content: center; }
.join-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.join-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 28px; width: 100%; padding: 60px 24px; }
.join-glass-box { background: rgba(255,255,255,.50); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-radius: 16px; padding: 18px 36px; text-align: center; line-height: 1.2; }
.join-us-text { display: block; font-size: 35px; font-weight: 600; color: #1a1a1a; }
.join-today-text { display: block; font-size: 50px; font-weight: 400; color: #064F3E; }
.join-form-row { display: flex; align-items: center; gap: 14px; width: 100%; max-width: 580px; }
.join-input { flex: 1; border: none; border-radius: 10px; padding: 15px 20px; font-size: .95rem; font-family: 'Open Sans', sans-serif; outline: none; background: rgba(255,255,255,.92); color: #333; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.join-input::placeholder { color: #aaa; }
.join-btn { background: #064F3E; color: #fff; border: none; border-radius: 10px; padding: 15px 30px; font-size: .95rem; font-weight: 700; font-family: 'Open Sans', sans-serif; cursor: pointer; white-space: nowrap; }
.join-btn:hover { background: var(--green-btn); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--green-dark); color: rgba(255,255,255,.7); padding: 20px 0; font-size: .78rem; }
footer a { color: rgba(255,255,255,.7); }
footer a:hover { color: #fff; }

/* ── WHATSAPP FAB ─────────────────────────────────────────── */
.wa-fab { position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.2); z-index: 999; cursor: pointer; }
.wa-fab i { font-size: 1.5rem; color: #fff; }

/* ── RESPONSIVE COMMON ────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-big { font-size: 2.5rem; }
}
