/* ============ ROOT & CSS VARIABLES ============ */
:root {
  --orange: #E07B39;
  --orange-soft: #F6E3D3;
  --orange-pale: #FCEFE4;
  --brown: #5D4037;
  --brown-dark: #3E2C23;
  --brown-deep: #2E1F18;
  --white: #FFFFFF;
  --gray-100: #F7F5F3;
  --gray-200: #EFE9E4;
  --gray-300: #DCD3CB;
  --shadow-sm: 0 2px 10px rgba(62, 44, 35, 0.08);
  --shadow-md: 0 8px 28px rgba(62, 44, 35, 0.12);
  --shadow-lg: 0 16px 48px rgba(62, 44, 35, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
}

/* ============ RESET & BASE STYLES ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--brown);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--brown); }

img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5 { color: var(--brown); font-weight: 700; line-height: 1.25; }
h1 { font-size: 44px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

.section { padding: 72px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .eyebrow {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--brown); opacity: 0.78; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: center;
}
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 6px 18px rgba(224, 123, 57, 0.35); }
.btn-orange:hover { background: #c96a2f; color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(224, 123, 57, 0.42); }
.btn-brown { background: var(--brown); color: var(--white); }
.btn-brown:hover { background: var(--brown-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--brown); border: 2px solid var(--brown); }
.btn-outline:hover { background: var(--brown); color: var(--white); }
.btn-white { background: var(--white); color: var(--brown); }
.btn-white:hover { background: var(--orange-pale); color: var(--brown); }

/* ============ HEADER & TOPBAR ============ */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: var(--shadow-sm); }

.topbar { background: var(--brown); color: #F3EAE3; font-size: 13px; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 40px; gap: 12px; flex-wrap: wrap;
}
.topbar a { color: #F3EAE3; font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar .helpline { display: inline-flex; align-items: center; gap: 8px; }
.topbar .lang { display: inline-flex; gap: 6px; align-items: center; }
.topbar .lang a { padding: 2px 10px; border-radius: 999px; }
.topbar .lang a.active { background: var(--orange); color: #fff; }

.main-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 46px; width: auto; display: block; }
.brand .logo-mark {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), #f0a76b);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(224, 123, 57, 0.35);
  flex: 0 0 auto;
}
.brand .logo-mark svg { width: 28px; height: 28px; }
.brand .brand-text { line-height: 1.2; }
.brand .brand-text strong { display: block; font-size: 17px; color: var(--brown); letter-spacing: 0.2px; }
.brand .brand-text span { font-size: 11.5px; color: var(--orange); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

.main-nav ul { display: flex; gap: 4px; list-style: none; align-items: center; }
.main-nav a {
  display: block; padding: 10px 14px; font-weight: 600; font-size: 14.5px;
  color: var(--brown); border-radius: 999px; position: relative;
}
.main-nav a:hover { color: var(--orange); background: var(--orange-pale); }
.main-nav a.active { color: var(--orange); background: var(--orange-pale); }

.nav-toggle {
  display: none; border: none; background: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 10px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--brown); margin: 5px auto; border-radius: 2px; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; background: var(--white); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px;
  align-items: center; padding: 88px 0 96px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-pale); color: var(--brown);
  font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 20px;
}
.hero-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.hero h1 { font-size: 50px; margin-bottom: 8px; letter-spacing: -0.5px; }
.hero h1 .accent { color: var(--orange); }
.hero .hero-sub { font-size: 20px; font-weight: 700; color: var(--brown); margin-bottom: 14px; }
.hero p { font-size: 16.5px; max-width: 540px; margin-bottom: 30px; opacity: 0.85; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-actions .hint { font-size: 13px; opacity: 0.6; }

.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-float {
  position: absolute; background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; color: var(--brown);
}
.hero-float .f-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.hero-float small { display: block; font-weight: 400; opacity: 0.65; font-size: 12px; }
.hero-float.f1 { top: 30px; left: -34px; }
.hero-float.f2 { bottom: 34px; right: -30px; }

/* ============ TICKER ============ */
.ticker { background: var(--brown); color: #F7EDE5; overflow: hidden; position: relative; }
.ticker-inner { display: flex; align-items: stretch; }
.ticker-label {
  background: var(--orange); color: #fff; font-weight: 800; font-size: 13px;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 12px 22px; white-space: nowrap; flex: 0 0 auto;
  display: flex; align-items: center; gap: 8px;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-track ul {
  display: flex; list-style: none; gap: 48px; padding: 12px 0; white-space: nowrap;
  animation: ticker 38s linear infinite;
}
.ticker-track ul:hover { animation-play-state: paused; }
.ticker-track li { font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.ticker-track li::before { content: "●"; color: var(--orange); font-size: 9px; }
.ticker-track a { color: #F7EDE5; }
.ticker-track a:hover { color: var(--orange); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ STATS ============ */
.stats { background: var(--orange-pale); border-bottom: 1px solid var(--gray-200); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 40px 0;
}
.stat { text-align: center; padding: 8px 12px; }
.stat .num { font-size: 40px; font-weight: 800; color: var(--orange); line-height: 1.1; }
.stat .lbl { font-size: 14px; font-weight: 600; color: var(--brown); margin-top: 6px; }

/* ============ CARDS ============ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); padding: 34px 30px;
  border: 1px solid var(--gray-200);
  transition: all 0.25s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.card .icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card .icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 15px; opacity: 0.8; margin-bottom: 18px; flex: 1; }
.card .link-more { font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }

/* ============ SPLIT FEATURE ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .media { position: relative; }
.split .media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split .content .eyebrow {
  display: inline-block; background: var(--orange-pale); color: var(--orange);
  font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 16px;
}
.split .content h2 { margin-bottom: 16px; }
.split .content p { margin-bottom: 16px; opacity: 0.82; }
.checks { list-style: none; margin-bottom: 26px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-weight: 600; }
.checks li svg { width: 22px; height: 22px; color: var(--orange); flex: 0 0 auto; margin-top: 2px; }

/* ============ COMPONENTS ============ */
.components-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.component {
  background: var(--gray-100); border-radius: var(--radius-md);
  padding: 30px; border-left: 4px solid var(--orange);
}
.component .num { font-size: 13px; font-weight: 800; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.component h3 { margin-bottom: 10px; }
.component p { font-size: 15px; opacity: 0.8; }

/* ============ NOTICES LIST ============ */
.notice-list { list-style: none; }
.notice-list li {
  display: flex; gap: 18px; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--gray-200);
  transition: background 0.2s ease; border-radius: var(--radius-sm);
}
.notice-list li:hover { background: var(--orange-pale); }
.notice-date {
  flex: 0 0 auto; width: 68px; text-align: center;
  background: var(--brown); color: #fff; border-radius: var(--radius-sm);
  padding: 8px 6px; line-height: 1.15;
}
.notice-date b { display: block; font-size: 20px; }
.notice-date span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.9; }
.notice-list li .txt { font-weight: 600; font-size: 15px; flex: 1; }

/* ============ LAYOUT: CONTENT + SIDEBAR ============ */
.page-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 60px 0; align-items: start; }
.page-body { min-width: 0; }
.page-body h2 { margin: 34px 0 16px; }
.page-body h2:first-child { margin-top: 0; }
.page-body h3 { margin: 26px 0 12px; }
.page-body p { margin-bottom: 16px; opacity: 0.85; }
.page-body ul, .page-body ol { margin: 0 0 18px 22px; }
.page-body li { margin-bottom: 8px; opacity: 0.85; }
.lead { font-size: 18px; opacity: 0.92 !important; font-weight: 500; }

.sidebar { position: sticky; top: 96px; }
.widget {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  overflow: hidden; margin-bottom: 26px;
}
.widget .widget-title {
  background: var(--brown); color: #fff; font-weight: 700; font-size: 16px;
  padding: 14px 20px; display: flex; align-items: center; gap: 10px;
}
.widget .widget-title svg { width: 18px; height: 18px; color: var(--orange); }
.widget ul { list-style: none; padding: 10px 0; }
.widget ul a {
  display: block; padding: 10px 20px; font-size: 14.5px; font-weight: 600;
  color: var(--brown); border-left: 3px solid transparent;
}
.widget ul a:hover { background: var(--orange-pale); color: var(--orange); border-left-color: var(--orange); }
.widget ul a.active { background: var(--orange-pale); color: var(--orange); border-left-color: var(--orange); }

.callout {
  background: var(--orange-pale); border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm); padding: 20px 22px; margin: 24px 0;
}
.callout p { margin: 0; opacity: 1; }

/* ============ TABLE ============ */
.table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius-sm); border: 1px solid var(--gray-200); }
table.data { width: 100%; border-collapse: collapse; font-size: 14.5px; }
table.data th {
  background: var(--brown); color: #fff; text-align: left;
  padding: 12px 16px; font-weight: 700; white-space: nowrap;
}
table.data td { padding: 12px 16px; border-top: 1px solid var(--gray-200); }
table.data tr:nth-child(even) td { background: var(--gray-100); }

/* ============ MEDIA GALLERY ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: all 0.25s ease; cursor: pointer; position: relative;
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gallery-item img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.gallery-item .cap { padding: 14px 16px; }
.gallery-item .cap b { font-size: 14.5px; color: var(--brown); }
.gallery-item .cap span { display: block; font-size: 12.5px; opacity: 0.6; margin-top: 2px; }
.gallery-item.video .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(224, 123, 57, 0.92); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.gallery-item.video .play svg { width: 22px; height: 22px; color: #fff; margin-left: 3px; }
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-tabs button {
  border: 2px solid var(--gray-300); background: var(--white); color: var(--brown);
  font-weight: 700; font-size: 14px; padding: 9px 22px; border-radius: 999px; cursor: pointer;
  transition: all 0.2s ease;
}
.filter-tabs button:hover { border-color: var(--orange); color: var(--orange); }
.filter-tabs button.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ============ FORM ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; color: var(--brown); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; font-size: 15px; color: var(--brown);
  border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  background: var(--white); font-family: inherit; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(224, 123, 57, 0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info .citem { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-info .citem .cicon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--orange-pale);
  color: var(--orange); display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.contact-info .citem .cicon svg { width: 24px; height: 24px; }
.contact-info .citem b { display: block; margin-bottom: 2px; }
.contact-info .citem p, .contact-info .citem a { font-size: 14.5px; opacity: 0.82; }

.map-box { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); position: relative; }
.map-box img { width: 100%; }

/* ============ FOOTER ============ */
.site-footer { background: var(--brown-deep); color: #E9DCD2; margin-top: 0; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 60px 0 40px; }
.footer-col .f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-col .f-brand .brand-logo { height: 40px; }
.footer-col .f-brand .logo-mark { width: 42px; height: 42px; border-radius: 12px; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #D8C9BE; font-size: 14.5px; }
.footer-col ul a:hover { color: var(--orange); }
.footer-col p { font-size: 14px; opacity: 0.85; margin-bottom: 18px; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s ease;
}
.socials a:hover { background: var(--orange); }
.socials a svg { width: 18px; height: 18px; color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 22px 0; }
.footer-helpline { background: var(--orange); color: #fff; }
.footer-helpline .container { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: center; padding: 14px 24px; font-weight: 600; font-size: 14px; }
.footer-helpline a { color: #fff; text-decoration: underline; }
.footer-helpline a:hover { color: var(--brown); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom-inner .links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-inner a { color: #D8C9BE; }
.footer-bottom-inner a:hover { color: var(--orange); }

/* ============ DROPDOWN NAV ============ */
.main-nav .has-drop { position: relative; }
.main-nav .has-drop > a { display: flex; align-items: center; gap: 6px; }
.main-nav .has-drop > a .caret {
  width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 5px solid currentColor; transition: transform 0.2s ease;
}
.main-nav .has-drop:hover > a .caret, .main-nav .has-drop.open > a .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.22s ease; z-index: 60;
}
.main-nav .has-drop:hover > .dropdown, .main-nav .has-drop.open > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-weight: 600; font-size: 14px; color: var(--brown); white-space: nowrap;
}
.dropdown a:hover { background: var(--orange-pale); color: var(--orange); }
.dropdown .dd-group { font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); padding: 8px 14px 2px; }
.dropdown .dd-sep { height: 1px; background: var(--gray-200); margin: 6px 8px; }
.dropdown a.wide { white-space: normal; }

/* ============ PAGE HERO (inner) ============ */
.inner-hero {
  background: linear-gradient(135deg, var(--brown), var(--brown-dark));
  color: #F7EDE5; padding: 52px 0;
}
.inner-hero h1 { color: #fff; font-size: 38px; margin-bottom: 8px; }
.inner-hero h1 span { color: var(--orange); }
.inner-hero .crumb { font-size: 13.5px; color: #D8C9BE; }
.inner-hero .crumb a { color: var(--orange); font-weight: 600; }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(46,31,24,0.62); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-md); max-width: 640px; width: 100%;
  box-shadow: var(--shadow-lg); overflow: hidden; animation: modalIn 0.28s ease;
}
@keyframes modalIn { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-head {
  background: linear-gradient(135deg, var(--orange), #f0a76b);
  color: #fff; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.modal-head b { font-size: 16px; display: flex; align-items: center; gap: 10px; }
.modal-head b svg { width: 20px; height: 20px; }
.modal-close {
  border: none; background: rgba(255,255,255,0.22); color: #fff; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%; font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.4); }
.modal-body { padding: 24px; max-height: 70vh; overflow-y: auto; font-size: 15px; }
.modal-body p { margin-bottom: 14px; opacity: 0.9; }
.modal-body ul, .modal-body ol { margin: 0 0 14px 22px; }
.modal-body li { margin-bottom: 6px; }
.modal-actions { padding: 0 24px 22px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ ACCORDION ============ */
.accordion { list-style: none; }
.acc-item { border: 1px solid var(--gray-200); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; background: var(--white); }
.acc-head {
  width: 100%; text-align: left; border: none; background: none; cursor: pointer;
  padding: 16px 20px; font-size: 15.5px; font-weight: 700; color: var(--brown);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: inherit;
}
.acc-head:hover { color: var(--orange); }
.acc-head .acc-ic { flex: 0 0 auto; transition: transform 0.25s ease; color: var(--orange); }
.acc-item.open .acc-head .acc-ic { transform: rotate(45deg); }
.acc-body { display: none; padding: 0 20px 18px; font-size: 15px; opacity: 0.9; }
.acc-item.open .acc-body { display: block; }

/* ============ PAGINATION ============ */
.pagination { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 28px; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; padding: 0 12px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--brown);
  border: 1px solid var(--gray-300); background: var(--white);
}
.pagination a:hover { border-color: var(--orange); color: var(--orange); }
.pagination .cur { background: var(--orange); border-color: var(--orange); color: #fff; }
.pagination .dots { border: none; padding: 0; }

/* ============ SUCCESS STORY CARDS ============ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.story-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: all 0.25s ease;
}
.story-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.story-card .story-img { height: 230px; overflow: hidden; position: relative; background: var(--gray-200); }
.story-card .story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-card .story-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.story-card .story-body h3 { font-size: 18px; margin-bottom: 6px; }
.story-card .story-body .tag { font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 10px; }
.story-card .story-body p { font-size: 14.5px; opacity: 0.8; flex: 1; }
.story-card .story-body .link-more { font-weight: 700; font-size: 14px; margin-top: 14px; }

/* ============ LOGO WALL & TILES ============ */
.logo-wall { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: center; }
.logo-wall a { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 16px 20px; }
.logo-wall img { height: 52px; width: auto; }

.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tile {
  border-radius: var(--radius-md); overflow: hidden; background: var(--white);
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); transition: all 0.25s ease;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.tile img { width: 100%; height: 170px; object-fit: cover; }
.tile .tile-body { padding: 22px; }
.tile .tile-body h3 { margin-bottom: 8px; font-size: 19px; }
.tile .tile-body p { font-size: 14.5px; opacity: 0.8; }

/* ============ MISC HELPERS ============ */
.faq-search { max-width: 560px; margin: 0 auto 32px; }
.faq-search input {
  width: 100%; padding: 15px 20px; font-size: 15.5px; border: 1.5px solid var(--gray-300);
  border-radius: 999px; font-family: inherit; color: var(--brown); background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-search input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(224,123,57,0.15); }

.doc-list { list-style: none; }
.doc-list li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
.doc-list li .doc-ic { flex: 0 0 auto; color: var(--orange); margin-top: 2px; }
.doc-list a { font-weight: 600; }
.doc-list small { display: block; font-size: 12.5px; opacity: 0.6; }

.chip-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chip-nav a {
  border: 1px solid var(--gray-300); border-radius: 999px; padding: 8px 18px;
  font-weight: 700; font-size: 13.5px; color: var(--brown); background: var(--white);
  transition: all 0.2s ease;
}
.chip-nav a:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }

.control-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end; margin-bottom: 24px; }
.control-row .form-group { margin-bottom: 0; flex: 1; min-width: 220px; }

.sector-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.sector-item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.sector-item img { height: 90px; width: auto; }
.sector-item span { font-size: 13px; font-weight: 700; color: var(--brown); line-height: 1.3; }

/* ============ SITEMAP ============ */
.sm-section { padding-top: 48px; }
.sm-search-box {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.sm-search-label {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 18px;
}
.sm-search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: 999px;
  padding: 6px 8px 6px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sm-search-row:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(224, 123, 57, 0.14);
}
.sm-search-row svg { width: 20px; height: 20px; color: var(--orange); flex: 0 0 auto; }
.sm-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--brown);
  font-family: inherit;
  background: transparent;
  min-width: 0;
}
.sm-search-input::placeholder { color: var(--gray-300); }
.sm-clear {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--brown);
  font-size: 20px;
  cursor: pointer;
  border: none;
  flex: 0 0 auto;
  line-height: 1;
}
.sm-clear:hover { background: var(--orange); color: var(--white); }
.sm-clear.show { display: flex; }
.sm-search-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 13.5px;
  flex-wrap: wrap;
}
.sm-search-meta [data-sm-count] { font-weight: 800; color: var(--orange); }
.sm-search-meta [data-sm-hint] { color: var(--brown); opacity: 0.62; }

.sm-legend {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--brown);
  opacity: 0.8;
  margin-bottom: 26px;
  align-items: center;
}
.sm-legend span { display: inline-flex; align-items: center; gap: 7px; }
.sm-legend .lg-node { color: var(--orange); font-size: 16px; }
.sm-legend .lg-branch { color: var(--gray-300); font-weight: 800; font-size: 16px; }
.sm-legend .lg-link { color: var(--orange); font-weight: 800; font-size: 16px; }

.sm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
  align-items: start;
}
.sm-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}
.sm-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.sm-card.hidden-group { display: none; }

.sm-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #FDF1E7, #FFF7F0);
  border-bottom: 2px solid var(--orange-soft);
  cursor: pointer;
}
.sm-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--white);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(224, 123, 57, 0.18);
  flex: 0 0 auto;
}
.sm-ico svg { width: 21px; height: 21px; }
.sm-card-title { font-size: 16.5px; font-weight: 800; color: var(--brown); margin: 0; flex: 1; }
.sm-count {
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  background: var(--white);
  border: 1px solid var(--orange-soft);
  padding: 3px 11px;
  border-radius: 999px;
  flex: 0 0 auto;
}
.sm-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--brown);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.sm-toggle svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.sm-card.open .sm-toggle svg { transform: rotate(45deg); }

.sm-card-body { position: relative; padding: 18px 20px 20px; }

.sm-tree, .sm-tree ul { list-style: none; margin: 0; padding: 0; }
.sm-tree { position: relative; }
.sm-item {
  position: relative;
  padding: 10px 0 10px 30px;
  border-radius: 8px;
  transition: background 0.18s ease;
}
.sm-item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.sm-item::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--gray-200);
}
.sm-item:last-child::before { bottom: 50%; }
.sm-item:hover { background: var(--gray-100); }
.sm-item:hover::before, .sm-item:hover::after { background: var(--orange); }
.sm-item.hidden { display: none; }
.sm-link {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 15px;
  color: var(--brown);
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--white);
}
.sm-link:hover { color: var(--orange); }
.sm-desc {
  display: block;
  font-size: 13px;
  color: var(--brown);
  opacity: 0.62;
  margin-top: 2px;
  padding-left: 8px;
}

.sm-subtree { padding: 4px 0 8px; }
.sm-subtree.hidden-sub { display: none; }
.sm-subtree + .sm-subtree { margin-top: 6px; border-top: 1px dashed var(--gray-200); padding-top: 14px; }
.sm-sub-label {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  padding: 4px 12px;
  margin-bottom: 6px;
  background: var(--orange-pale);
  border-radius: 999px;
}
.sm-subtree-list { margin-left: 4px; }
.sm-subtree > .sm-tree { margin-left: 12px; padding-left: 14px; border-left: 2px dashed var(--gray-200); }
.sm-subtree > .sm-tree .sm-item { padding-left: 24px; }
.sm-subtree > .sm-tree .sm-item::before { left: 4px; }
.sm-subtree > .sm-tree .sm-item::after { left: 4px; width: 16px; }

.sm-empty {
  display: none;
  text-align: center;
  padding: 46px 24px;
  background: var(--gray-100);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-md);
  margin-top: 22px;
}
.sm-empty.show { display: block; }
.sm-empty svg { width: 42px; height: 42px; color: var(--gray-300); margin: 0 auto 14px; }
.sm-empty p { color: var(--brown); }

/* ============ RESPONSIVE MEDIA QUERIES ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 64px; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-media { order: -1; max-width: 640px; margin: 0 auto; width: 100%; }
  .hero-float.f1 { left: 10px; }
  .hero-float.f2 { right: 10px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .cards-grid, .components-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .story-grid, .tile-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  /* Robust Mobile Menu Drawer & Hamburger Styling */
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10002;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 0;
    flex-shrink: 0;
    background: var(--brown);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .main-nav {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 300px !important;
    height: 100vh !important;
    background: var(--white) !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 70px 20px 40px !important;
    z-index: 10001 !important;
    overflow-y: auto !important;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
  }
  .main-nav.open, .main-nav.active {
    left: 0 !important;
  }
  .main-nav ul {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 4px !important;
    width: 100% !important;
  }
  .main-nav li {
    width: 100% !important;
  }
  .main-nav a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 14px !important;
    border-radius: 8px !important;
    color: var(--brown) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
  }

  .dropdown {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 3px solid var(--orange) !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none !important;
    padding: 4px 0 4px 12px !important;
    background: #fdf8f5 !important;
    min-width: 0 !important;
    width: 100% !important;
    margin-top: 4px !important;
  }
  .main-nav .has-drop.open > .dropdown {
    display: block !important;
  }
  .dropdown a {
    white-space: normal !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #555555 !important;
    padding: 8px 10px !important;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(46,31,24,0.25);
    z-index: 99;
    display: none;
  }
  .nav-overlay.show, .nav-overlay.active {
    display: block !important;
  }
}

@media (max-width: 760px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .hero h1 { font-size: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .cards-grid, .components-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .ticker-label { display: none; }
  .topbar-inner { justify-content: center; }
}

@media (max-width: 640px) {
  .sm-search-box { padding: 24px 20px; }
  .sm-search-label { font-size: 20px; }
  .sm-search-meta { justify-content: flex-start; }
  .sm-grid { grid-template-columns: 1fr; gap: 16px; }
  .sm-toggle { display: flex; }
  .sm-card-body { display: none; }
  .sm-card.open .sm-card-body { display: block; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stat .num { font-size: 30px; }
}

/* Hides the Google Translate top banner */
.skiptranslate iframe {
    display: none !important;
}
body {
    top: 0px !important; 
}
/* Hides the Google Translate tooltip on hover */
#goog-gt-tt {
    display: none !important;
}