/* ============================================
   CSC Portal — style.css
   Modern Blue + White Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
  --pri:      #0052B4;
  --pri2:     #003580;
  --pri-lt:   #e8f0fe;
  --acc:      #FF6B1A;
  --acc2:     #E55500;
  --green:    #138808;
  --gold:     #D4A017;
  --bg:       #F4F7FF;
  --bg2:      #FFFFFF;
  --card:     #FFFFFF;
  --border:   #DAE3F5;
  --tx:       #0D1B2A;
  --tx2:      #374151;
  --tx3:      #6B7280;
  --shadow:   0 4px 24px rgba(0,82,180,.10);
  --shadow-lg:0 8px 40px rgba(0,82,180,.18);
  --radius:   14px;
  --radius-lg:20px;
  --header-h: 70px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--bg);
  color: var(--tx);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* --- Ticker --- */
.ticker-wrap {
  background: var(--acc);
  display: flex;
  overflow: hidden;
}
.ticker-label {
  background: var(--pri2);
  color: #fff;
  padding: 7px 14px;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-inner span {
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
  padding: 7px 30px;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* --- Header --- */
.site-header {
  background: linear-gradient(135deg, var(--pri2), var(--pri));
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.tricolor-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--acc) 33.33%, #fff 33.33%, #fff 66.66%, var(--green) 66.66%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--header-h);
  max-width: 1280px;
  margin: 0 auto;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  flex-shrink: 0;
}
.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--acc), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
}
.brand-tag {
  font-size: .65rem;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border: 1.5px solid transparent;
  transition: all .2s;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.main-nav a.nav-btn {
  border-color: rgba(255,255,255,.3);
}
.main-nav a.nav-btn.cta {
  background: var(--acc);
  border-color: var(--acc);
  color: #fff;
}
.main-nav a.nav-btn.cta:hover { background: var(--acc2); }
.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 7px 10px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 1rem;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(160deg, var(--pri2), var(--pri) 55%, #006B8F);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,107,26,.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(19,136,8,.12), transparent 50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: .76rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}
.hero h1, .hero h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span, .hero h2 span { color: var(--gold); }
.hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero-pri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--acc);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 6px 20px rgba(255,107,26,.4);
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.btn-hero-pri:hover { background: var(--acc2); transform: translateY(-2px); }
.btn-hero-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: all .2s;
}
.btn-hero-sec:hover { background: rgba(255,255,255,.25); }

/* --- Section Base --- */
.section {
  padding: 72px 24px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--pri2);
}
.section-header p {
  color: var(--tx3);
  margin-top: 10px;
  font-size: .95rem;
}
.section-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--acc), var(--gold));
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,.75); }
.section-header.light .section-underline { background: linear-gradient(90deg, var(--acc), var(--gold)); }

/* --- Pages --- */
.page-hero {
  background: linear-gradient(135deg, var(--pri2), var(--pri));
  padding: 60px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,107,26,.12), transparent 50%);
}
.page-hero h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,.8);
  margin-top: 10px;
  font-size: .95rem;
  position: relative;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: all .25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pri);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 14px;
  background: var(--pri-lt);
}

/* --- Service Cards --- */
.service-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: all .25s;
  display: block;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pri);
}
.service-card .svc-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}
.service-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--pri2);
  margin-bottom: 6px;
}
.service-card p {
  font-size: .78rem;
  color: var(--tx3);
  line-height: 1.6;
}
.service-card .svc-apply-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--pri);
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  transition: all .2s;
}
.service-card:hover .svc-apply-btn {
  background: var(--pri);
  color: #fff;
  border-color: var(--pri);
}

/* --- Stats Bar --- */
.stats-bar {
  background: linear-gradient(90deg, var(--acc), var(--gold), var(--green));
  padding: 3px 0;
}
.stats-inner {
  background: #fff;
  margin: 0 3px;
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.stat-item .num {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pri);
  text-align: center;
}
.stat-item .lbl {
  font-size: .7rem;
  color: var(--tx3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-align: center;
}

/* --- Why Choose Us (dark bg) --- */
.why-section {
  background: var(--pri2);
  padding: 72px 24px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
  transition: background .25s;
}
.why-card:hover { background: rgba(255,255,255,.14); }
.why-card .ic { font-size: 2rem; margin-bottom: 12px; }
.why-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.why-card p { font-size: .83rem; color: rgba(255,255,255,.72); line-height: 1.6; }

/* --- FAQ Accordion --- */
.faq-wrap { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--pri); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  color: var(--pri2);
  gap: 12px;
  transition: background .2s;
}
.faq-q:hover { background: #f0f4ff; }
.faq-q .faq-arrow { transition: transform .3s; color: var(--acc); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 22px 18px; font-size: .87rem; color: var(--tx3); line-height: 1.8; }

/* --- Forms --- */
.form-wrap {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.form-head {
  background: linear-gradient(135deg, var(--pri2), var(--pri));
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.form-head-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}
.form-head h3 { font-family: 'Baloo 2', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; }
.form-head p { font-size: .76rem; color: rgba(255,255,255,.75); margin-top: 2px; }
.form-body { padding: 28px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--pri2);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 11px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--tx);
  font-size: .9rem;
  outline: none;
  transition: all .2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--pri);
  box-shadow: 0 0 0 3px rgba(0,82,180,.1);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 11px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pri2), var(--pri));
  color: #fff;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--tx2);
}
.btn-outline:hover { border-color: var(--pri); color: var(--pri); }
.btn-success { background: var(--green); color: #fff; }
.btn-accent { background: var(--acc); color: #fff; }
.btn-accent:hover { background: var(--acc2); }

/* --- Alert / Notice --- */
.alert {
  padding: 13px 18px;
  border-radius: 11px;
  font-size: .87rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.alert-success { background: #e8f5e9; border: 1.5px solid #4CAF50; color: #2e7d32; }
.alert-error   { background: #fce8e8; border: 1.5px solid #f44336; color: #c62828; }
.alert-info    { background: #e3f2fd; border: 1.5px solid #2196F3; color: #1565C0; }
.alert-warning { background: #fff8e1; border: 1.5px solid #FFC107; color: #e65100; }

/* --- Track/Status Card --- */
.track-result {
  border-radius: var(--radius);
  padding: 18px;
  border: 1.5px solid;
  margin-top: 14px;
  animation: fadeUp .4s ease;
}
.track-result.success { background: #e8f5e9; border-color: #4CAF50; }
.track-result.pending { background: #fff8e1; border-color: #FFC107; }
.track-result.rejected { background: #fce8e8; border-color: #f44336; }
.track-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: .86rem;
}
.track-row:last-child { border-bottom: none; }
.track-row .label { color: var(--tx3); }
.track-row .value { font-weight: 600; }

/* --- Status Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .73rem;
  font-weight: 700;
}
.badge-new        { background: rgba(239,68,68,.1);   color: #ef4444; }
.badge-processing { background: rgba(59,130,246,.1);  color: #3b82f6; }
.badge-completed  { background: rgba(34,197,94,.1);   color: #22c55e; }
.badge-rejected   { background: rgba(107,114,128,.1); color: #6b7280; }
.badge-paid       { background: rgba(34,197,94,.1);   color: #22c55e; }
.badge-pending-pay{ background: rgba(249,115,22,.1);  color: #f97316; }

/* --- About / Highlights --- */
.highlights-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--pri-lt);
  border-radius: var(--radius);
  padding: 16px;
}
.highlight-item .hi-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--pri);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.highlight-item h4 { font-weight: 700; color: var(--pri2); font-size: .93rem; }
.highlight-item p  { font-size: .82rem; color: var(--tx3); margin-top: 3px; line-height: 1.6; }

/* --- Blog --- */
.blog-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--pri); }
.blog-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--pri-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--pri);
  flex-shrink: 0;
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: .72rem; color: var(--tx3); margin-bottom: 8px; }
.blog-card-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pri2);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card-excerpt { font-size: .83rem; color: var(--tx3); line-height: 1.7; flex: 1; }
.blog-card-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--pri);
}
.blog-tag {
  display: inline-block;
  background: var(--pri-lt);
  color: var(--pri);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
}

/* --- Customer Panel --- */
.cp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}
.cp-sidebar {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  padding: 24px;
  height: fit-content;
}
.cp-user { text-align: center; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.cp-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri), var(--acc));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-family: 'Baloo 2', sans-serif;
}
.cp-user-name { font-weight: 700; color: var(--pri2); font-size: 1rem; }
.cp-user-email { font-size: .75rem; color: var(--tx3); margin-top: 3px; }
.cp-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--tx2);
  margin-bottom: 4px;
  transition: all .2s;
}
.cp-nav a:hover, .cp-nav a.active { background: var(--pri-lt); color: var(--pri); }
.cp-nav a i { width: 18px; text-align: center; }

.cp-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 22px;
}
.cp-card-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pri2);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.cp-stat {
  background: var(--card);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 16px;
  text-align: center;
}
.cp-stat .n { font-family: 'Baloo 2', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--pri); }
.cp-stat .l { font-size: .72rem; color: var(--tx3); font-weight: 600; margin-top: 3px; }

/* --- Footer --- */
.site-footer { background: #0A1628; color: rgba(255,255,255,.65); padding: 60px 24px 30px; margin-top: 0; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo { font-family: 'Baloo 2', sans-serif; font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-tagline { font-size: .8rem; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: all .2s;
}
.footer-social a:hover { background: var(--pri); }
.footer-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 30px; }
.footer-col h4 { color: #fff; font-size: .85rem; font-weight: 700; margin-bottom: 12px; }
.footer-col a, .footer-col span {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
  transition: color .2s;
  cursor: pointer;
}
.footer-col a:hover { color: var(--acc); }
.footer-col a i, .footer-col span i { width: 16px; margin-right: 5px; }
.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .76rem;
  color: rgba(255,255,255,.4);
}

/* --- WhatsApp Float --- */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  z-index: 400;
  transition: all .25s;
  animation: wa-pulse 2s infinite;
}
.wa-float:hover { transform: scale(1.1); background: #1da851; }
.wa-tooltip {
  position: absolute;
  right: 64px;
  background: #1da851;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50%        { box-shadow: 0 6px 32px rgba(37,211,102,.8); }
}

/* --- Mobile Bottom Nav --- */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1.5px solid var(--border);
  z-index: 450;
  padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.mobile-bottom-nav { display: flex; justify-content: space-around; align-items: center; }
.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: .62rem;
  font-weight: 600;
  color: var(--tx3);
  padding: 4px 8px;
  border-radius: 10px;
  transition: color .2s;
}
.mobile-bottom-nav a i { font-size: 1.1rem; }
.mobile-bottom-nav a.active, .mobile-bottom-nav a:hover { color: var(--pri); }
.mobile-bottom-nav a.mbn-apply {
  background: var(--acc);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  justify-content: center;
  margin-top: -12px;
  box-shadow: 0 4px 14px rgba(255,107,26,.5);
}
.mobile-bottom-nav a.mbn-apply i { font-size: 1.3rem; }
.mobile-bottom-nav a.mbn-apply span { display: none; }

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.spin { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* --- Contact map --- */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); }

/* --- Table basic --- */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: var(--pri-lt);
  color: var(--pri2);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding: 12px 14px;
  text-align: left;
}
.data-table td { padding: 13px 14px; border-bottom: 1px solid var(--border); font-size: .86rem; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #f9fbff; }

/* --- Utility --- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .cp-layout { grid-template-columns: 1fr; }
  .cp-sidebar { display: none; } /* show as overlay on mobile */
}

@media (max-width: 680px) {
  body { padding-bottom: 70px; }
  .site-header .header-inner { padding: 0 14px; }
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pri2);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 600;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1rem; padding: 12px 24px; }
  .menu-toggle { display: flex; }
  .hero { padding: 50px 16px 70px; }
  .section { padding: 52px 16px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .wa-float { bottom: 80px; }
}

@media (min-width: 681px) {
  .mobile-bottom-nav { display: none; }
  .wa-float { bottom: 28px; }
}

/* --- Modern Blog Enhancements --- */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.blog-card-new { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.blog-card-new:hover { transform: translateY(-8px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); border-color: #3b82f6 !important; }
.blog-content h1, .blog-content h2, .blog-content h3 { font-family: 'Baloo 2', sans-serif; color: #1e293b; margin-top: 30px; margin-bottom: 15px; }
.blog-content p { margin-bottom: 20px; color: #4b5563; }
.blog-content img { max-width: 100%; border-radius: 12px; margin: 25px 0; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.blog-content a { color: #3b82f6; text-decoration: none; font-weight: 600; border-bottom: 1.5px solid rgba(59, 130, 246, 0.2); transition: border-color 0.2s; }
.blog-content a:hover { border-color: #3b82f6; }

@media (max-width: 992px) {
  .blog-layout { grid-template-columns: 1fr !important; }
  .blog-sidebar { display: block; margin-top: 40px; }
}

