/* ============================================================
   TABUNG QURBAN — Main Stylesheet
   /assets/css/style.css
   ============================================================ */

/* ---- Variables ---- */
:root {
  --green-dark:    #1a4731;
  --green:         #2d6a4f;
  --green-mid:     #40916c;
  --green-light:   #74c69d;
  --green-pale:    #d8f3dc;
  --gold:          #b5832a;
  --gold-light:    #f4d58d;
  --gold-pale:     #fdf6e3;
  --white:         #ffffff;
  --beige:         #faf7f2;
  --gray-100:      #f8f9fa;
  --gray-200:      #e9ecef;
  --gray-300:      #dee2e6;
  --gray-500:      #adb5bd;
  --gray-700:      #495057;
  --gray-900:      #212529;
  --red:           #c0392b;
  --red-light:     #fdecea;
  --blue:          #2980b9;
  --blue-light:    #ebf5fb;
  --font-main:     'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --radius:        10px;
  --radius-lg:     16px;
  --shadow:        0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.12);
  --transition:    0.2s ease;
  --max-width:     1100px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--gray-900); background: var(--beige); line-height: 1.65; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ---- Container ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section-sm { padding: 2rem 0; }

/* ======================================================
   NAVBAR
====================================================== */
.navbar {
  background: var(--green-dark);
  padding: 0.75rem 0;
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.navbar-brand {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--white) !important; font-size: 1.25rem; font-weight: 700;
}
.navbar-brand span { color: var(--gold-light); }
.navbar-logo {
  width: 36px; height: 36px; background: var(--green);
  border-radius: 8px; border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
}
.navbar-nav {
  display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap;
}
.navbar-nav a {
  color: rgba(255,255,255,0.85); padding: 0.45rem 0.85rem;
  border-radius: 6px; font-size: 0.92rem; font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active { background: var(--green); color: var(--white); }
.navbar-nav .btn-nav-login {
  background: var(--gold); color: var(--green-dark) !important;
  font-weight: 600; padding: 0.45rem 1rem;
}
.navbar-nav .btn-nav-login:hover { background: var(--gold-light); }
.navbar-toggle {
  display: none; background: none; border: none;
  color: var(--white); font-size: 1.5rem; cursor: pointer; padding: 0.25rem;
}
@media (max-width: 768px) {
  .navbar-toggle { display: block; }
  .navbar-nav { display: none; flex-direction: column; width: 100%; gap: 0.1rem; padding-top: 0.5rem; }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { width: 100%; padding: 0.6rem 0.85rem; }
}

/* ======================================================
   HERO
====================================================== */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-mid) 100%);
  color: var(--white); padding: 5rem 0 4rem; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.04); pointer-events: none;
}
.hero-badge {
  display: inline-block; background: rgba(181,131,42,0.2); border: 1px solid var(--gold);
  color: var(--gold-light); padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold-light); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.88); max-width: 650px; margin: 0 auto 2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ======================================================
   BUTTONS
====================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.7rem 1.6rem; border-radius: var(--radius); border: none;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--green-dark); }
.btn-gold:hover { background: #9a6d21; color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { background: var(--gold-pale); color: var(--green-dark); }
.btn-danger { background: var(--red); color: var(--white); }
.btn-danger:hover { background: #a93226; color: var(--white); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5d; color: var(--white); }

/* ======================================================
   CARDS
====================================================== */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 1.75rem; transition: box-shadow var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }
.card-green { background: var(--green-dark); color: var(--white); }
.card-gold  { background: var(--gold-pale); border: 1px solid var(--gold-light); }
.card-pale  { background: var(--green-pale); }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

/* Package cards */
.package-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200); padding: 2rem;
  text-align: center; transition: all var(--transition); position: relative; overflow: hidden;
}
.package-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package-card.featured { border-color: var(--gold); }
.package-card .featured-ribbon {
  position: absolute; top: 14px; right: -28px;
  background: var(--gold); color: var(--green-dark); font-size: 0.72rem;
  font-weight: 700; padding: 3px 36px; transform: rotate(45deg);
}
.package-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.package-card h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.package-price {
  font-size: 1.8rem; font-weight: 800; color: var(--green); margin: 0.75rem 0 0.25rem;
}
.package-price small { font-size: 0.9rem; color: var(--gray-700); font-weight: 400; }
.package-monthly { font-size: 0.85rem; color: var(--gray-700); margin-bottom: 1rem; }
.package-card p { font-size: 0.9rem; color: var(--gray-700); margin-bottom: 1.5rem; line-height: 1.5; }
.price-note { font-size: 0.75rem; color: var(--gold); background: var(--gold-pale); border-radius: 6px; padding: 0.4rem 0.75rem; margin-top: 0.5rem; }

/* ======================================================
   FORMS
====================================================== */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; color: var(--gray-900); margin-bottom: 0.4rem; font-size: 0.92rem; }
.form-group label .req { color: var(--red); }
.form-control {
  width: 100%; padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius);
  font-size: 0.95rem; font-family: var(--font-main);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white); color: var(--gray-900);
}
.form-control:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,79,0.12); }
.form-control.is-invalid { border-color: var(--red); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%236c757d'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem; }
.form-hint { font-size: 0.8rem; color: var(--gray-700); margin-top: 0.3rem; }
.form-error { font-size: 0.82rem; color: var(--red); margin-top: 0.3rem; }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 1rem; }
.form-check input[type="checkbox"] { width: 17px; height: 17px; margin-top: 3px; flex-shrink: 0; accent-color: var(--green); }
.form-check label { font-size: 0.9rem; color: var(--gray-700); font-weight: 400; }
.form-box {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 2.5rem; max-width: 520px; margin: 0 auto;
}
@media (max-width: 600px) { .form-box { padding: 1.5rem; } }
.form-title { font-size: 1.5rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.35rem; }
.form-subtitle { font-size: 0.9rem; color: var(--gray-700); margin-bottom: 1.75rem; }
.form-divider { text-align: center; color: var(--gray-500); font-size: 0.85rem; margin: 1.25rem 0; }
.form-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-cols { grid-template-columns: 1fr; } }

/* ======================================================
   ALERTS
====================================================== */
.alert { padding: 0.9rem 1.1rem; border-radius: var(--radius); font-size: 0.92rem; margin-bottom: 1.25rem; border-left: 4px solid; }
.alert-success { background: #eafaf1; border-color: #27ae60; color: #1e8449; }
.alert-danger  { background: var(--red-light); border-color: var(--red); color: #922b21; }
.alert-warning { background: var(--gold-pale); border-color: var(--gold); color: #7d6608; }
.alert-info    { background: var(--blue-light); border-color: var(--blue); color: #1a5276; }

/* ======================================================
   BADGES
====================================================== */
.badge { display: inline-block; padding: 0.25em 0.65em; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.badge-success  { background: #eafaf1; color: #1e8449; }
.badge-warning  { background: var(--gold-pale); color: #7d6608; }
.badge-danger   { background: var(--red-light); color: var(--red); }
.badge-info     { background: var(--blue-light); color: var(--blue); }
.badge-secondary{ background: var(--gray-200); color: var(--gray-700); }

/* ======================================================
   TABLES
====================================================== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); }
table.tbl { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table.tbl th { background: var(--green-dark); color: var(--white); padding: 0.7rem 0.9rem; text-align: left; font-weight: 600; white-space: nowrap; }
table.tbl td { padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
table.tbl tr:last-child td { border-bottom: none; }
table.tbl tr:hover td { background: var(--green-pale); }

/* ======================================================
   DASHBOARD
====================================================== */
.dashboard-layout { display: grid; grid-template-columns: 220px 1fr; gap: 1.75rem; align-items: start; }
@media (max-width: 900px) { .dashboard-layout { grid-template-columns: 1fr; } }

.sidebar {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 1.5rem 0; position: sticky; top: 80px;
}
.sidebar-user { padding: 0 1.25rem 1.25rem; border-bottom: 1px solid var(--gray-200); }
.sidebar-avatar {
  width: 52px; height: 52px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white); font-weight: 700; margin-bottom: 0.5rem;
}
.sidebar-name { font-weight: 700; color: var(--green-dark); font-size: 1rem; }
.sidebar-email { font-size: 0.8rem; color: var(--gray-700); }
.sidebar-nav { padding: 0.75rem 0; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 1.25rem; color: var(--gray-700); font-size: 0.9rem;
  transition: all var(--transition); border-left: 3px solid transparent;
}
.sidebar-nav a:hover { background: var(--green-pale); color: var(--green-dark); border-left-color: var(--green); }
.sidebar-nav a.active { background: var(--green-pale); color: var(--green-dark); font-weight: 600; border-left-color: var(--green); }

.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 1.75rem; }
.stat-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow); border-top: 4px solid var(--green);
}
.stat-card.gold  { border-top-color: var(--gold); }
.stat-card.red   { border-top-color: var(--red); }
.stat-card.blue  { border-top-color: var(--blue); }
.stat-label { font-size: 0.8rem; color: var(--gray-700); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.35rem; }
.stat-value { font-size: 1.5rem; font-weight: 800; color: var(--green-dark); }
.stat-card.gold  .stat-value { color: var(--gold); }
.stat-card.red   .stat-value { color: var(--red); }
.stat-card.blue  .stat-value { color: var(--blue); }

.progress-bar-wrap { background: var(--gray-200); border-radius: 50px; height: 10px; overflow: hidden; margin: 0.5rem 0; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--green-light)); border-radius: 50px; transition: width 0.6s ease; }

/* ======================================================
   PAGE HEADER
====================================================== */
.page-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white); padding: 3rem 0; text-align: center;
}
.page-header h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.page-header p  { color: rgba(255,255,255,0.85); font-size: 1rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.75rem; }
.breadcrumb a { color: var(--gold-light); }

/* ======================================================
   SECTION TITLES
====================================================== */
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--green-dark); margin-bottom: 0.5rem; }
.section-title p { color: var(--gray-700); max-width: 560px; margin: 0 auto; }
.section-title .divider-line {
  width: 60px; height: 4px; background: var(--gold); border-radius: 2px; margin: 0.75rem auto 0;
}

/* ======================================================
   HOW IT WORKS — STEPS
====================================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; background: var(--green); color: var(--white);
  border-radius: 50%; font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(45,106,79,0.35);
}
.step h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.4rem; }
.step p { font-size: 0.88rem; color: var(--gray-700); }

/* ======================================================
   ADMIN PANEL
====================================================== */
.admin-layout { display: grid; grid-template-columns: 200px 1fr; min-height: 100vh; }
@media (max-width: 900px) { .admin-layout { grid-template-columns: 1fr; } }
.admin-sidebar {
  background: var(--green-dark); color: var(--white); padding: 0;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.admin-sidebar-brand {
  padding: 1.5rem 1.25rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem; font-weight: 700; color: var(--gold-light);
}
.admin-sidebar-brand small { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); font-weight: 400; margin-top: 0.2rem; }
.admin-nav a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.25rem; color: rgba(255,255,255,0.8); font-size: 0.88rem;
  transition: all var(--transition); border-left: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,0.1); color: var(--white); border-left-color: var(--gold);
}
.admin-main { background: var(--gray-100); padding: 2rem; overflow-x: auto; }
.admin-topbar {
  background: var(--white); border-radius: var(--radius); padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.75rem;
  box-shadow: var(--shadow);
}
.admin-topbar h2 { font-size: 1.2rem; color: var(--green-dark); }
@media (max-width: 900px) { .admin-sidebar { height: auto; position: static; } }

/* ======================================================
   FOOTER
====================================================== */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.8); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-brand { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.footer-brand span { color: var(--gold-light); }
.footer p { font-size: 0.85rem; line-height: 1.6; }
.footer h4 { color: var(--gold-light); font-size: 0.9rem; margin-bottom: 0.75rem; font-weight: 600; letter-spacing: 0.3px; }
.footer ul li { margin-bottom: 0.4rem; }
.footer ul li a { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.footer ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.footer-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.55); max-width: 600px; }

/* ======================================================
   WHATSAPP FLOAT BUTTON
====================================================== */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1000;
  background: #25d366; color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all var(--transition); text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); background: #1ebe5d; color: var(--white); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.wa-float-tooltip {
  position: fixed; bottom: 5rem; right: 1.5rem; z-index: 1000;
  background: var(--green-dark); color: var(--white);
  padding: 0.4rem 0.85rem; border-radius: 8px; font-size: 0.8rem;
  white-space: nowrap; pointer-events: none;
  box-shadow: var(--shadow); animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* ======================================================
   FAQ ACCORDION
====================================================== */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.1rem 0; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 0.75rem;
  font-size: 0.97rem; font-weight: 600; color: var(--green-dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-question .arrow { flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open .arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: 1rem; color: var(--gray-700); font-size: 0.92rem; line-height: 1.7; }
.faq-answer.open { display: block; }

/* ======================================================
   MISC UTILITIES
====================================================== */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-green   { color: var(--green); }
.text-gold    { color: var(--gold); }
.text-red     { color: var(--red); }
.text-muted   { color: var(--gray-700); }
.text-small   { font-size: 0.85rem; }
.text-xs      { font-size: 0.78rem; }
.fw-bold      { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none; }
.w-full { width: 100%; }
.divider { height: 1px; background: var(--gray-200); margin: 1.5rem 0; }
.notice-box {
  background: var(--gold-pale); border: 1px solid var(--gold-light);
  border-radius: var(--radius); padding: 0.9rem 1.1rem; font-size: 0.88rem; color: #5a4000;
}
.notice-box strong { color: var(--gold); }

/* ======================================================
   v2 ADDITIONS: Logo, Lang Switcher, MYTQ branding
====================================================== */

/* Navbar logo image */
.navbar-logo-img {
  height: 36px; width: auto; max-width: 160px;
  object-fit: contain; display: block;
}
.navbar-brand-text { display: none; } /* hidden when logo loads */
.navbar-brand { gap: 0.5rem; }

/* Footer logo */
.footer-logo-wrap { margin-bottom: 0.6rem; }
.footer-logo-img  { height: 40px; width: auto; max-width: 160px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }

/* Language switcher */
.lang-switcher {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(255,255,255,0.1); border-radius: 20px;
  padding: 0.25rem 0.7rem; font-size: 0.78rem; font-weight: 700;
}
.lang-switcher a { color: rgba(255,255,255,0.7); text-decoration: none; letter-spacing: 0.5px; transition: color 0.2s; }
.lang-switcher a:hover, .lang-switcher a.active { color: var(--gold-light); }
.lang-sep { color: rgba(255,255,255,0.35); font-size: 0.7rem; }

/* Footer lang switcher variant */
.footer-lang .lang-switcher { background: rgba(255,255,255,0.08); margin-top: 0.5rem; }

/* MYTQ login/dashboard branding */
.mytq-brand {
  display: flex; flex-direction: column; align-items: center; margin-bottom: 1.5rem;
}
.mytq-logo-img {
  height: 56px; width: auto; max-width: 200px; object-fit: contain;
  margin-bottom: 0.4rem;
}
.mytq-tagline { font-size: 0.8rem; color: var(--gray-700); }

/* Dashboard MYTQ header */
.dash-mytq-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white); padding: 1.75rem 2rem; border-radius: var(--radius-lg);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1.25rem;
}
.dash-mytq-header img { height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.dash-mytq-header h2 { font-size: 1.25rem; margin-bottom: 0.2rem; }
.dash-mytq-header p  { font-size: 0.88rem; color: rgba(255,255,255,0.8); }

/* Global notice (staging/manual payment) */
.global-notice {
  background: rgba(181,131,42,0.15); border: 1px solid var(--gold);
  border-radius: 8px; padding: 0.6rem 1rem; font-size: 0.82rem;
  color: var(--gold-pale); text-align: center; margin-bottom: 0;
}
.global-notice a { color: var(--gold-light); text-decoration: underline; }

/* Navbar lang in mobile */
@media (max-width: 768px) {
  .lang-switcher { margin: 0.4rem 0.85rem; }
  .navbar-logo-img { height: 30px; }
}
