/* ════════════════════════════════════════════════════════════
   MultiLayers – custom overrides & additions
   (Keep all project-specific CSS here, not in style.css)
════════════════════════════════════════════════════════════ */

/* ── Mobile Menu ──────────────────────────────────────────── */
.mob-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}
.mob-logo { max-height: 28px; width: auto; }

.mob-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mob-contact {
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.mob-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--body-color);
  text-decoration: none;
  line-height: 1.4;
  transition: color .2s;
}
.mob-contact-row:hover { color: var(--theme-color); }
.mob-contact-icon {
  width: 28px;
  height: 28px;
  background: var(--theme-color);
  color: var(--white-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.mob-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}

/* ── Consultation Banner Info Rows ────────────────────────── */
.cta-info-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 18px 22px;
  transition: background 0.3s ease;
}
.cta-info-row:hover { background: rgba(255,255,255,0.18); }
.cta-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white-color);
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.cta-info-row:hover .cta-info-icon { background: rgba(255,255,255,0.25); }
.cta-info-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
  font-family: var(--title-font);
}
.cta-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-color);
  text-decoration: none;
  font-family: var(--title-font);
  line-height: 1.3;
  display: block;
}
.cta-info-value:hover { color: var(--white-color); opacity: 0.85; }
.mb-35 { margin-bottom: 35px; }

/* ── Certification Cards ──────────────────────────────────── */
.cert-card {
  position: relative;
  background: var(--white-color);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow 0.45s ease, transform 0.45s ease;
  height: 100%;
  border-top: 4px solid var(--theme-color);
}
.cert-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-10px);
}
.cert-card-img {
  position: relative;
  overflow: hidden;
  background: #f7f6f2;
  aspect-ratio: 3/4;
}
.cert-card-img::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(0,0,0,0.09);
  z-index: 2;
  pointer-events: none;
  transition: inset 0.45s ease, border-color 0.45s ease;
}
.cert-card:hover .cert-card-img::before {
  inset: 9px;
  border-color: rgba(0,0,0,0.14);
}
.cert-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px;
  transition: transform 0.5s ease;
  display: block;
  position: relative;
  z-index: 1;
}
.cert-card:hover .cert-card-img img { transform: scale(1.03); }
.cert-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 26px;
  opacity: 0;
  transition: opacity 0.38s ease;
  z-index: 3;
}
.cert-card:hover .cert-card-overlay { opacity: 1; }
.cert-card-overlay span {
  color: var(--white-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--title-font);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.cert-card-overlay span i {
  font-size: 12px;
  transition: transform 0.25s ease;
}
.cert-card:hover .cert-card-overlay span i { transform: translateX(3px); }
.cert-card-footer {
  padding: 18px 22px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.cert-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--title-color);
  font-family: var(--title-font);
  margin: 0;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

/* ── Section spacing on mobile ───────────────────────────── */
@media (max-width: 991px) {
  .space, .space-top { padding-top: 50px !important; }
}

/* ── Footer overflow fix (small screens) ─────────────────── */
.footer-wrapper { overflow-x: hidden; }

/* ── Footer Company Profile Download Card ─────────────────── */
.footer-dl-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--theme-color);
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  text-decoration: none;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.footer-dl-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateX(4px);
}
.footer-dl-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--white-color);
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.footer-dl-card:hover .footer-dl-icon-wrap { background: color-mix(in srgb, var(--theme-color) 85%, white); }
.footer-dl-body { flex: 1; min-width: 0; }
.footer-dl-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white-color);
  font-family: var(--title-font);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.footer-dl-sub {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.40);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-dl-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.footer-dl-card:hover .footer-dl-btn {
  border-color: var(--theme-color);
  color: var(--theme-color);
  transform: translateY(2px);
}

/* ── WhatsApp Float Button ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 54px;
  z-index: 9990;
  width: 54px;
  height: 54px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.whatsapp-float .wa-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #16171A;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-float .wa-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #16171A;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── About author image: circular with padding ───────────── */
.author-style1 .author-img { padding: 10px !important; border-radius: 50% !important; }
.author-style1 .author-img img { border-radius: 0 !important; }

/* ── CTA box3 image decorative shapes ────────────────────── */
.cta-box3 .cta-img:after, .cta-box3 .cta-img::before { background-color: #000 !important; }

/* ── Hero slider button: smooth transition ────────────────── */
.hero-layout1 .ls-button-layer {
  transition: background-color 0.25s ease, color 0.25s ease !important;
}

/* ── Social icons: square flex containers ────────────────── */
.social-style3 a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 45px !important;
  height: 45px !important;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   Contact Page — Split Panel Design
══════════════════════════════════════════════════════════ */

.contact-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .contact-section { padding-top: 50px; padding-bottom: 50px; }
}

/* ── Outer card wrapping both panels ─────────────────────── */
.contact-card {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
@media (max-width: 991px) {
  .contact-card { flex-direction: column; }
}

/* ── LEFT panel: info ─────────────────────────────────────── */
.contact-panel-info {
  background: var(--title-color);
  color: var(--white-color);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  width: 42%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.contact-panel-info::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.contact-panel-info::after {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  pointer-events: none;
}
@media (max-width: 991px) {
  .contact-panel-info { width: 100%; padding: 40px 28px; }
}

.cpi-pretitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--theme-color);
  margin-bottom: 10px;
  display: block;
}
.cpi-title {
  font-family: var(--title-font);
  font-size: 26px;
  font-weight: 700;
  color: var(--white-color);
  margin: 0 0 10px;
  line-height: 1.25;
}
.cpi-desc {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin: 0 0 40px;
}

/* info items */
.cpi-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  flex: 1;
}
.cpi-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cpi-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background .3s;
}
.cpi-item:hover .cpi-icon { background: var(--theme-color); }
.cpi-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cpi-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.cpi-value {
  font-size: 13.5px;
  color: rgba(255,255,255,.9);
  line-height: 1.55;
  word-break: break-all;
}
.cpi-value a { color: inherit; transition: color .2s; display: block; }
.cpi-value a:hover { color: var(--theme-color); }

/* social row */
.cpi-social {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cpi-social-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-right: 4px;
  white-space: nowrap;
}
.cpi-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background .25s, color .25s;
}
.cpi-social a:hover { background: var(--theme-color); color: var(--white-color); }

/* ── RIGHT panel: form ────────────────────────────────────── */
.contact-panel-form {
  background: var(--white-color);
  padding: 52px 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .contact-panel-form { padding: 40px 28px; }
}
@media (max-width: 575px) {
  .contact-panel-form { padding: 32px 20px; }
}

.cpf-title {
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--title-color);
  margin: 0 0 6px;
}
.cpf-sub {
  font-size: 13px;
  color: var(--body-color);
  margin: 0 0 36px;
}

/* fields */
.cpf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
@media (max-width: 575px) {
  .cpf-row { grid-template-columns: 1fr; }
}
.cpf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}
.cpf-field.cpf-full { grid-column: 1 / -1; }
.cpf-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--title-color);
}
.cpf-field label span { color: var(--theme-color); margin-left: 2px; }
.cpf-input-wrap { position: relative; }
.cpf-input-wrap i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #c0c5cf;
  pointer-events: none;
  transition: color .2s;
  width: 20px;
  text-align: center;
}
.cpf-textarea-wrap i { top: 14px; transform: none; }
.cpf-field input,
.cpf-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #e0e3ea;
  border-radius: 0;
  padding: 10px 10px 10px 28px;
  font-size: 14px;
  color: var(--title-color);
  font-family: var(--body-font);
  transition: border-color .2s;
  outline: none;
  height: auto;
  resize: none;
}
.cpf-field textarea { min-height: 110px; padding-top: 10px; }
.cpf-field input::placeholder,
.cpf-field textarea::placeholder { color: #c0c5cf; font-size: 13px; }
.cpf-input-wrap:focus-within i { color: var(--theme-color); }
.cpf-field input:focus,
.cpf-field textarea:focus { border-bottom-color: var(--theme-color); }
.cpf-field input.field-error,
.cpf-field textarea.field-error { border-bottom-color: #dc3545 !important; }

/* submit */
.cpf-submit { margin-top: 8px; }
.cpf-submit .vs-btn { width: 100%; justify-content: center; }

/* ── Toast ───────────────────────────────────────────────── */
.contact-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white-color);
  border-left: 4px solid var(--theme-color);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,.10);
  padding: 14px 18px;
  margin-bottom: 24px;
  animation: contactToastIn .3s cubic-bezier(.4,0,.2,1);
}
.contact-toast.is-error { border-left-color: #dc3545; }
.contact-toast.is-error .contact-toast-icon { color: #dc3545; }
@keyframes contactToastIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.contact-toast-icon { font-size: 1.2rem; color: var(--theme-color); flex-shrink: 0; margin-top: 2px; }
.contact-toast-msg  { flex: 1; font-size: .9rem; line-height: 1.5; color: var(--title-color); }
.contact-toast-close {
  background: none; border: none; font-size: 1.2rem; line-height: 1;
  color: #ccc; cursor: pointer; padding: 0; flex-shrink: 0; transition: color .2s;
}
.contact-toast-close:hover { color: #555; }

/* ══════════════════════════════════════════════════════════
   Gallery Page – Premium Grid
══════════════════════════════════════════════════════════ */

.gallery-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f4f6fb;
}
@media (max-width: 991px) {
  .gallery-section { padding-top: 50px; padding-bottom: 50px; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1199px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item { display: flex; flex-direction: column; }

.gallery-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dde0e8;
}

/* inner frame decoration */
.gallery-thumb::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.55);
  z-index: 3;
  pointer-events: none;
  transition: inset .4s ease, border-color .4s ease;
}
.gallery-item:hover .gallery-thumb::after {
  inset: 5px;
  border-color: rgba(255,255,255,.8);
}

.gallery-link {
  display: block;
  width: 100%; height: 100%;
  text-decoration: none;
}
.gallery-link img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.gallery-item:hover .gallery-link img { transform: scale(1.1); }

.gallery-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,.2);
  font-size: 2.5rem;
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,17,23,.95) 0%, rgba(14,17,23,.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .38s ease;
  z-index: 2;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}
.gallery-overlay-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  font-family: var(--title-font);
  line-height: 1.3;
  margin: 0;
  flex: 1;
  min-width: 0;
  transform: translateY(8px);
  transition: transform .38s ease;
}
.gallery-item:hover .gallery-overlay-title { transform: translateY(0); }

.gallery-zoom {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white-color);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transform: scale(.5) translateY(8px);
  transition: transform .38s ease;
}
.gallery-item:hover .gallery-zoom { transform: scale(1) translateY(0); }

.gallery-type-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(14,17,23,.7);
  backdrop-filter: blur(6px);
  color: var(--white-color);
  padding: 3px 10px;
  font-size: 11px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
  letter-spacing: .04em;
  z-index: 4;
}

.gallery-loadmore-wrap {
  text-align: center;
  margin-top: 52px;
}

/* ══════════════════════════════════════════════════════════
   Downloads Page – Document Table
══════════════════════════════════════════════════════════ */

.dl-page-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f4f6fb;
}
@media (max-width: 991px) {
  .dl-page-section { padding-top: 50px; padding-bottom: 50px; }
}

.dl-header-desc { max-width: 620px; }

/* table wrapper */
.dl-table {
  background: var(--white-color);
  border-top: 3px solid var(--theme-color);
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
}

.dl-table-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(0,0,0,.055);
  position: relative;
  transition: background .22s;
}
.dl-table-row:last-child { border-bottom: none; }
.dl-table-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--theme-color);
  transform: scaleY(0);
  transition: transform .25s ease;
}
.dl-table-row:hover { background: #f7f9ff; }
.dl-table-row:hover::before { transform: scaleY(1); }
.dl-table-row--unavailable { opacity: .6; }

.dl-table-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(0,0,0,.18);
  font-family: var(--title-font);
  min-width: 26px;
  flex-shrink: 0;
}

.dl-table-icon {
  width: 50px; height: 50px;
  background: var(--theme-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--white-color);
  flex-shrink: 0;
}

.dl-table-info {
  flex: 1;
  min-width: 0;
}
.dl-table-title {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--title-font);
  color: var(--title-color);
  margin: 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dl-table-desc {
  font-size: 13px;
  color: var(--body-color);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dl-table-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.dl-table-size {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #aab;
  background: #f0f2f7;
  padding: 4px 10px;
  font-family: var(--title-font);
}
.dl-table-downloads {
  font-size: 11.5px;
  color: #bbc;
  display: flex; align-items: center; gap: 4px;
}

.dl-table-action { flex-shrink: 0; }
.dl-table-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--theme-color);
  color: var(--white-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .22s;
  border: none; cursor: pointer;
  font-family: var(--title-font);
  white-space: nowrap;
}
.dl-table-btn:hover { background: var(--title-color); color: var(--white-color); }
.dl-table-btn--soon {
  background: #f0f2f6;
  color: #bbc;
  cursor: default;
}
.dl-table-btn--soon:hover { background: #f0f2f6; color: #bbc; }

@media (max-width: 767px) {
  .dl-table-row { flex-wrap: wrap; gap: 12px; padding: 18px 20px; }
  .dl-table-meta { display: none; }
  .dl-table-info { flex: 1 1 calc(100% - 130px); min-width: 0; }
}

.dl-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--body-color);
}
.dl-empty i { font-size: 3.5rem; display: block; margin-bottom: 16px; opacity: .3; color: var(--theme-color); }

/* ══════════════════════════════════════════════════════════
   Clients Page
══════════════════════════════════════════════════════════ */

.clients-page-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .clients-page-section { padding-top: 50px; padding-bottom: 50px; }
}

.clients-header-desc { max-width: 640px; }

/* stats bar */
.clients-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(0,0,0,.08);
  border-left: 4px solid var(--theme-color);
  margin-bottom: 60px;
  background: var(--white-color);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.clients-stat {
  flex: 1;
  text-align: center;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.clients-stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(0,0,0,.08);
  flex-shrink: 0;
}
.clients-stat-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--title-font);
  color: var(--theme-color);
  line-height: 1;
  letter-spacing: -.02em;
}
.clients-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #aab;
}
@media (max-width: 575px) {
  .clients-stats { flex-direction: column; }
  .clients-stat-divider { width: 60px; height: 1px; }
}

/* logo grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,.08);
  border-left: 1px solid rgba(0,0,0,.08);
}
@media (max-width: 991px)  { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px)  { .clients-grid { grid-template-columns: repeat(2, 1fr); } }

.client-card {
  border-right: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
}
.client-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--theme-color);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.client-card:hover::before { transform: scaleX(1); }

.client-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px 30px;
  gap: 18px;
  text-decoration: none;
  transition: background .28s;
  cursor: default;
}
.client-card--linked .client-card-inner { cursor: pointer; }
.client-card:hover .client-card-inner { background: #f7f9ff; }

.client-logo-wrap {
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f8fc;
  border: 1px solid rgba(0,0,0,.07);
}
.client-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px 18px;
  filter: grayscale(1) opacity(.55);
  transition: filter .3s ease;
}
.client-card:hover .client-logo-wrap img { filter: grayscale(0) opacity(1); }

.client-logo-placeholder {
  width: 180px; height: 90px;
  background: #f0f2f7;
  border: 1px solid rgba(0,0,0,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-color);
  font-family: var(--title-font);
  letter-spacing: -.02em;
}
.client-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--title-color);
  font-family: var(--title-font);
  text-align: center;
  margin: 0;
  line-height: 1.35;
  letter-spacing: .01em;
}

.clients-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--body-color);
}
.clients-empty i { font-size: 3rem; display: block; margin-bottom: 12px; opacity: .35; }

/* ══════════════════════════════════════════════════════════
   About Page – Vision & Mission Cards
══════════════════════════════════════════════════════════ */

.vm-card {
  padding: 44px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--theme-color);
  background: var(--white-color);
  box-shadow: 0 4px 28px rgba(0,0,0,.07);
  transition: box-shadow .3s, transform .3s;
}
.vm-card:hover {
  box-shadow: 0 12px 44px rgba(36,81,158,.13);
  transform: translateY(-4px);
}
.vm-card--message { border-top-color: var(--title-color); }

.vm-card::before {
  content: '';
  position: absolute;
  right: -30px; bottom: -30px;
  width: 120px; height: 120px;
  background: rgba(36,81,158,.04);
  transform: rotate(20deg);
  pointer-events: none;
}
.vm-card--message::before { background: rgba(22,23,26,.04); }

.vm-icon {
  width: 56px; height: 56px;
  background: var(--theme-color);
  color: var(--white-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
}
.vm-card--message .vm-icon { background: var(--title-color); }

.vm-title {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--title-color);
  margin: 0 0 14px;
}
.vm-text {
  font-size: 14.5px;
  color: var(--body-color);
  line-height: 1.8;
  margin: 0;
}

/* About image placeholder */
.about-img-placeholder {
  background: var(--secondary-color);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  color: rgba(0,0,0,.12);
}

/* ══════════════════════════════════════════════════════════
   About Page – Manager's Message Section
══════════════════════════════════════════════════════════ */
.manager-msg-section {
  padding: 80px 0;
  background: var(--secondary-color);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.manager-msg-title {
  font-family: var(--title-font);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--title-color);
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 16px;
}
.manager-msg-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 3px;
  background: var(--theme-color);
}

.manager-msg-text {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--body-color);
}

.manager-img {
  max-width: 280px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

/* Manager's message inside the about section */
.about-manager-quote {
  margin-top: 16px;
  padding: 16px 20px;
  border-left: 3px solid var(--theme-color);
  background: rgba(36,81,158,.04);
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--body-color);
}

/* ══════════════════════════════════════════════════════════
   Products Page – Col-6 Square Cards
══════════════════════════════════════════════════════════ */
.pc {
  background: var(--white-color);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow .3s, transform .3s;
}
.pc:hover {
  box-shadow: 0 12px 48px rgba(36,81,158,.15);
  transform: translateY(-5px);
}

/* Square image */
.pc-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #eef1f7 0%, #dce4f0 100%);
}
.pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.pc:hover .pc-img { transform: scale(1.06); }

.pc-img-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(36,81,158,.13);
}

.pc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,23,26,.55) 0%, transparent 55%);
  pointer-events: none;
}

/* Number badge */
.pc-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--title-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--theme-color);
  padding: 5px 12px;
  line-height: 1;
  z-index: 2;
}

/* Body */
.pc-body {
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 3px solid var(--theme-color);
}

.pc-body-top { flex: 1; }

.pc-title {
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 800;
  color: var(--title-color);
  margin: 0 0 12px;
  line-height: 1.25;
}

.pc-desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--body-color);
  margin: 0 0 26px;
}

/* Buttons */
.pc-actions {
  display: flex;
  gap: 10px;
}

.pc-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
  letter-spacing: .02em;
}
.pc-btn i { font-size: 15px; }

.pc-btn--wa { background: #25D366; color: #fff; }
.pc-btn--wa:hover { background: #1aad55; color: #fff; }

.pc-btn--mail { background: var(--theme-color); color: #fff; }
.pc-btn--mail:hover { background: var(--title-color); color: #fff; }

@media (max-width: 575px) {
  .pc-title { font-size: 19px; }
  .pc-body { padding: 22px 20px 24px; }
}

