/* ============================================================
   BIIA Business Directory — v2.1
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #1a1a2e;
  --blue2:   #16213e;
  --orange:  #e5630a;
  --orange2: #c4520a;
  --gray50:  #f9fafb;
  --gray100: #f3f4f6;
  --gray200: #e5e7eb;
  --gray400: #9ca3af;
  --gray600: #4b5563;
  --gray700: #374151;
  --gray800: #1f2937;
  --green:   #16a34a;
  --red:     #dc2626;
  --shadow1: 0 1px 3px rgba(0,0,0,.08);
  --shadow2: 0 4px 12px rgba(0,0,0,.08);
  --shadow3: 0 8px 24px rgba(0,0,0,.10);
  --radius:  8px;
  --font:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ind-page {
  font-family: var(--font);
  color: var(--gray800);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 0 60px;
}

/* ── PAGE HEADER ─────────────────────────────────────────── */
.ind-page-header {
  background: var(--blue);
  padding: 28px 28px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ind-page-header__inner { flex-shrink: 0; }

.ind-page-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
  line-height: 1.2;
}

.ind-page-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin: 0;
}

.ind-search-box {
  flex: 1;
  min-width: 260px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 600px;
}

.ind-search-box svg {
  margin: 0 12px;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
}

.ind-search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 12px 0;
  font-family: var(--font);
  color: #fff;
  background: transparent;
}
.ind-search-box input::placeholder { color: rgba(255,255,255,.45); }

.ind-search-box button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background .2s;
  flex-shrink: 0;
}
.ind-search-box button:hover { background: var(--orange2); }

/* ── AD SLIDER ─────────────────────────────────────────── */
.ind-ads-strip {
  border-bottom: 1px solid var(--gray200);
}

.ind-ad-slider {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--blue2);
}
@media (max-width: 640px) { .ind-ad-slider { height: 160px; } }

.ind-ad-track {
  display: flex;
  height: 100%;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.ind-ad-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  background-size: cover;
  background-position: center;
}

.ind-ad-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
}

.ind-ad-slide__content {
  position: relative;
  z-index: 1;
  padding: 28px 48px;
  max-width: 560px;
}
@media (max-width: 640px) { .ind-ad-slide__content { padding: 20px 24px; } }

.ind-ad-slide__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
  line-height: 1.25;
}
@media (max-width: 640px) { .ind-ad-slide__title { font-size: 18px; } }

.ind-ad-slide__sub {
  font-size: 14px;
  color: rgba(255,255,255,.82);
  margin-bottom: 14px;
}

.ind-ad-slide__btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.ind-ad-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.4);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s;
}
.ind-ad-nav:hover { background: rgba(0,0,0,.65); }
.ind-ad-prev { left: 14px; }
.ind-ad-next { right: 14px; }

.ind-ad-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
}
.ind-ad-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.ind-ad-dot.active { background: #fff; transform: scale(1.3); }

/* ── MAIN 2-COLUMN LAYOUT ───────────────────────────────── */
.ind-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: start;
  min-height: 600px;
}

@media (max-width: 768px) {
  .ind-layout { grid-template-columns: 1fr; }
}

/* ── LEFT SIDEBAR ───────────────────────────────────────── */
.ind-sidebar {
  border-right: 1px solid var(--gray200);
  background: #fff;
  position: sticky;
  top: 0;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gray200) transparent;
}

.ind-sidebar__header {
  padding: 16px 16px 10px;
  border-bottom: 1px solid var(--gray100);
}
.ind-sidebar__header h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray400);
  margin: 0;
}

.ind-cat-list {
  display: flex;
  flex-direction: column;
  padding: 6px 0;
}

.ind-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  text-decoration: none;
  color: var(--gray700);
  font-size: 13px;
  font-weight: 400;
  border-left: 3px solid transparent;
  transition: background .12s, color .12s, border-color .12s;
  line-height: 1.35;
  gap: 8px;
}
.ind-cat-link:hover {
  background: var(--gray50);
  color: var(--orange);
  text-decoration: none;
  border-left-color: var(--orange);
}
.ind-cat-link.active {
  background: #fff5f0;
  color: var(--orange);
  font-weight: 600;
  border-left-color: var(--orange);
}

.ind-cat-link__name { flex: 1; }

.ind-cat-link__count {
  font-size: 11px;
  background: var(--gray100);
  color: var(--gray400);
  padding: 1px 7px;
  border-radius: 20px;
  flex-shrink: 0;
  font-weight: 500;
}
.ind-cat-link.active .ind-cat-link__count {
  background: #fde8d8;
  color: var(--orange);
}

/* ── RIGHT MAIN ─────────────────────────────────────────── */
.ind-main {
  background: var(--gray50);
  min-height: 600px;
  padding: 20px;
}

/* ── TOOLBAR ─────────────────────────────────────────────── */
.ind-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.ind-toolbar__left h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray800);
  margin: 0 0 1px;
}

.ind-count {
  font-size: 12px;
  color: var(--gray400);
}

.ind-toolbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ind-select {
  padding: 7px 10px;
  border: 1px solid var(--gray200);
  border-radius: 6px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--gray700);
  background: #fff;
  cursor: pointer;
  outline: none;
}
.ind-select:focus { border-color: var(--orange); }

.ind-view-toggle {
  display: flex;
  border: 1px solid var(--gray200);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.ind-vtbtn {
  background: #fff;
  border: none;
  padding: 7px 10px;
  cursor: pointer;
  color: var(--gray400);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--gray200);
  transition: .12s;
}
.ind-vtbtn:last-child { border-right: none; }
.ind-vtbtn.active { background: var(--gray100); color: var(--gray700); }

/* Active filter chip */
.ind-active-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: #fff5f0;
  border: 1px solid #fcd9b6;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 14px;
  color: var(--gray600);
}
.ind-active-filter strong { color: var(--orange); }
#ind-clear-filter {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--gray400);
  font-size: 12px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: .12s;
}
#ind-clear-filter:hover { background: var(--gray100); color: var(--red); }

/* ── COMPANY CARDS — GRID ─────────────────────────────── */
.ind-grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.ind-list-view { display: flex; flex-direction: column; gap: 10px; }

.ind-card {
  background: #fff;
  border: 1px solid var(--gray200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .18s;
  display: flex;
  flex-direction: column;
}
.ind-card:hover { box-shadow: var(--shadow2); transform: translateY(-2px); }

.ind-card__img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: var(--gray100);
  display: block;
  border-bottom: 1px solid var(--gray100);
}
.ind-card__body {
  padding: 13px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ind-card__cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ind-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray800);
  text-decoration: none;
  line-height: 1.3;
  display: block;
}
.ind-card__name:hover { color: var(--orange); }
.ind-card__address {
  font-size: 12px;
  color: var(--gray400);
  line-height: 1.4;
}
.ind-card__about {
  font-size: 12px;
  color: var(--gray600);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ind-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
  padding-top: 6px;
}
.ind-card__tag {
  font-size: 10px;
  background: var(--gray100);
  color: var(--gray600);
  padding: 2px 7px;
  border-radius: 20px;
  border: 1px solid var(--gray200);
}
.ind-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-top: 1px solid var(--gray100);
  background: var(--gray50);
}
.ind-card__phone {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray600);
  text-decoration: none;
}
.ind-card__phone:hover { color: var(--green); }
.ind-card__view {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid var(--orange);
  border-radius: 5px;
  transition: .15s;
}
.ind-card__view:hover { background: var(--orange); color: #fff; text-decoration: none; }

/* List view card */
.ind-list-card {
  background: #fff;
  border: 1px solid var(--gray200);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 100px 1fr auto;
  overflow: hidden;
  transition: box-shadow .18s;
}
.ind-list-card:hover { box-shadow: var(--shadow1); }
.ind-list-card__img { width:100px; height:100%; min-height:90px; object-fit:cover; background:var(--gray100); display:block; }
.ind-list-card__body { padding:12px 14px; display:flex; flex-direction:column; gap:3px; min-width:0; }
.ind-list-card__actions { display:flex; flex-direction:column; gap:6px; padding:12px 14px; justify-content:center; align-items:flex-end; border-left:1px solid var(--gray100); min-width:100px; }

/* Skeletons */
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.ind-skel-line, .ind-skel-img {
  background: linear-gradient(90deg, #efefef 25%, #e2e2e2 50%, #efefef 75%);
  background-size: 200% 100%;
  animation: shimmer 1.3s infinite;
  border-radius: 4px;
}
.ind-card--skeleton { pointer-events: none; }
.ind-skel-img { height:150px; border-radius:0; }
.ind-skel-body { padding:13px 14px; display:flex; flex-direction:column; gap:10px; }
.ind-skel-line { height:12px; }
.ind-skel-line--lg { height:16px; width:65%; }
.ind-skel-line--sm { width:40%; }

/* No results */
.ind-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray400);
}
.ind-empty h3 { font-size:16px; color:var(--gray700); margin:12px 0 6px; }

/* Pagination */
.ind-pagination-wrap { display:flex; justify-content:center; gap:5px; margin-top:28px; flex-wrap:wrap; }
.ind-page-btn {
  min-width:34px; height:34px; padding:0 9px;
  border:1px solid var(--gray200); border-radius:6px;
  background:#fff; font-size:13px; font-family:var(--font);
  cursor:pointer; color:var(--gray600); transition:.12s;
}
.ind-page-btn:hover { border-color:var(--orange); color:var(--orange); }
.ind-page-btn.active { background:var(--orange); border-color:var(--orange); color:#fff; }
.ind-page-btn:disabled { opacity:.4; cursor:not-allowed; }

/* Gate */
.ind-gate { text-align:center; padding:64px 20px; }
.ind-gate__icon { font-size:52px; margin-bottom:14px; }
.ind-gate h2 { font-size:20px; color:var(--gray800); margin-bottom:8px; }
.ind-gate p { color:var(--gray600); margin-bottom:22px; font-size:14px; }
.ind-btn-gate { display:inline-block; background:var(--orange); color:#fff; padding:11px 28px; border-radius:7px; font-weight:600; font-size:14px; text-decoration:none; }
.ind-btn-gate:hover { background:var(--orange2); color:#fff; }
.ind-gate__reg { font-size:13px; color:var(--gray400); margin-top:14px; }
.ind-gate__reg a { color:var(--orange); font-weight:600; text-decoration:none; }

/* ── AUTH ──────────────────────────────────────────────── */
.ind-auth-wrap { max-width:940px; margin:32px auto; font-family:var(--font); padding:0 16px; }
.ind-auth-split { display:grid; grid-template-columns:340px 1fr; border-radius:10px; overflow:hidden; box-shadow:var(--shadow3); border:1px solid var(--gray200); }

.ind-auth-left { background:var(--blue); padding:44px 32px; display:flex; flex-direction:column; justify-content:center; }
.ind-auth-left h2 { color:#fff; font-size:22px; font-weight:700; margin-bottom:10px; }
.ind-auth-left p { color:rgba(255,255,255,.6); font-size:13px; line-height:1.7; margin-bottom:22px; }
.ind-auth-left ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.ind-auth-left ul li { color:rgba(255,255,255,.78); font-size:13px; display:flex; align-items:center; gap:7px; }

.ind-auth-right { background:var(--gray50); padding:44px 36px; display:flex; align-items:center; }
.ind-auth-right > div { width:100%; }
.ind-auth-right h2 { font-size:20px; font-weight:700; color:var(--gray800); margin-bottom:4px; }
.ind-auth-right p { font-size:13px; color:var(--gray400); margin-bottom:22px; }

.ind-form-group { display:flex; flex-direction:column; gap:5px; margin-bottom:14px; }
.ind-form-group label { font-size:12px; font-weight:600; color:var(--gray700); }
.ind-form-group input, .ind-form-group textarea, .ind-form-group select {
  padding:10px 12px; border:1px solid var(--gray200); border-radius:6px;
  font-size:14px; font-family:var(--font); color:var(--gray800);
  background:#fff; transition:border-color .15s; width:100%;
}
.ind-form-group input:focus, .ind-form-group textarea:focus { border-color:var(--orange); outline:none; box-shadow:0 0 0 3px rgba(229,99,10,.09); }
.ind-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.ind-btn-primary {
  width:100%; padding:12px; background:var(--orange); color:#fff;
  border:none; border-radius:7px; font-size:14px; font-weight:600;
  cursor:pointer; font-family:var(--font); transition:background .2s; margin-top:4px;
}
.ind-btn-primary:hover { background:var(--orange2); }
.ind-btn-primary:disabled { opacity:.6; cursor:not-allowed; }
.ind-auth-footer { text-align:center; margin-top:16px; font-size:13px; color:var(--gray400); }
.ind-auth-footer a { color:var(--orange); font-weight:600; text-decoration:none; }
.ind-form-msg { padding:9px 13px; border-radius:6px; font-size:13px; margin-top:10px; display:none; }
.ind-form-msg.success { background:#f0fdf4; border:1px solid #86efac; color:var(--green); display:block; }
.ind-form-msg.error   { background:#fef2f2; border:1px solid #fca5a5; color:var(--red); display:block; }

/* OTP */
.ind-otp-wrap { text-align:center; margin:6px 0 18px; }
.ind-otp-boxes { display:flex; gap:8px; justify-content:center; margin:14px 0; }
.ind-otp-box {
  width:46px; height:54px; border:2px solid var(--gray200); border-radius:7px;
  font-size:22px; font-weight:700; text-align:center; font-family:monospace;
  color:var(--gray800); background:#fff; transition:border-color .15s;
  outline:none; caret-color:transparent;
}
.ind-otp-box:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(229,99,10,.1); }
.ind-otp-box.filled { border-color:var(--blue); }
.ind-otp-icon { font-size:34px; display:block; margin-bottom:6px; }
.ind-otp-resend { font-size:12px; color:var(--gray400); margin-top:12px; text-align:center; }
.ind-resend-btn { background:none; border:none; color:var(--orange); font-weight:600; font-size:12px; cursor:pointer; font-family:var(--font); }
.ind-back-btn { display:block; width:100%; text-align:center; background:none; border:none; color:var(--gray400); font-size:13px; margin-top:12px; cursor:pointer; font-family:var(--font); }
.ind-back-btn:hover { color:var(--gray700); }

/* ── DASHBOARD ─────────────────────────────────────────── */
.ind-dash { max-width:1100px; margin:0 auto; padding:20px 16px 60px; font-family:var(--font); }
.ind-dash-header { background:var(--blue); border-radius:10px; padding:20px 24px; display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; flex-wrap:wrap; gap:12px; }
.ind-dash-header__left h2 { color:#fff; font-size:17px; font-weight:600; margin:0; }
.ind-dash-header__left p { color:rgba(255,255,255,.55); font-size:12px; margin:2px 0 0; }
.ind-dash-header__right { display:flex; gap:8px; flex-wrap:wrap; }
.ind-dash-btn { padding:8px 16px; border-radius:6px; font-size:13px; font-weight:600; cursor:pointer; text-decoration:none; border:none; font-family:var(--font); transition:.15s; }
.ind-dash-btn--primary { background:var(--orange); color:#fff; }
.ind-dash-btn--primary:hover { background:var(--orange2); color:#fff; text-decoration:none; }
.ind-dash-btn--outline { background:transparent; color:rgba(255,255,255,.75); border:1px solid rgba(255,255,255,.22); }
.ind-dash-btn--outline:hover { background:rgba(255,255,255,.1); color:#fff; text-decoration:none; }
.ind-dash-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-bottom:24px; }
.ind-stat-box { background:#fff; border:1px solid var(--gray200); border-radius:8px; padding:16px 18px; }
.ind-stat-box__num { display:block; font-size:28px; font-weight:700; color:var(--gray800); line-height:1; }
.ind-stat-box__num--green { color:var(--green); }
.ind-stat-box__num--orange { color:var(--orange); }
.ind-stat-box__label { font-size:11px; color:var(--gray400); margin-top:4px; display:block; }
.ind-dash-table-wrap { overflow-x:auto; background:#fff; border:1px solid var(--gray200); border-radius:8px; }
.ind-dash-table { width:100%; border-collapse:collapse; font-size:13px; }
.ind-dash-table th { padding:10px 14px; text-align:left; background:var(--gray50); border-bottom:2px solid var(--gray200); font-weight:600; color:var(--gray600); }
.ind-dash-table td { padding:11px 14px; border-bottom:1px solid var(--gray100); vertical-align:middle; }
.ind-dash-table tr:last-child td { border-bottom:none; }
.ind-status-badge { font-size:11px; font-weight:600; padding:2px 8px; border-radius:20px; display:inline-block; }
.ind-status-badge--publish { background:#dcfce7; color:#166534; }
.ind-status-badge--pending { background:#fef3c7; color:#92400e; }
.ind-status-badge--draft   { background:var(--gray100); color:var(--gray600); }
.ind-action-btn { width:28px; height:28px; border:1px solid var(--gray200); border-radius:5px; background:#fff; cursor:pointer; font-size:13px; display:inline-flex; align-items:center; justify-content:center; text-decoration:none; color:var(--gray600); transition:.12s; }
.ind-action-btn:hover { background:var(--gray100); text-decoration:none; }
.ind-action-btn--danger:hover { background:#fef2f2; color:var(--red); border-color:#fca5a5; }
.ind-empty-state { text-align:center; padding:48px 20px; color:var(--gray400); }
.ind-empty-state h3 { font-size:16px; color:var(--gray700); margin:12px 0 6px; }

/* Company Form */
.ind-form-section { background:#fff; border:1px solid var(--gray200); border-radius:8px; padding:22px; margin-bottom:14px; }
.ind-form-section__title { font-size:14px; font-weight:600; color:var(--gray800); margin-bottom:16px; padding-bottom:10px; border-bottom:1px solid var(--gray100); display:flex; align-items:center; gap:9px; }
.ind-step-num { width:24px; height:24px; background:var(--orange); color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; flex-shrink:0; }
.ind-row-3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:12px; }
.ind-tags-preview { display:flex; flex-wrap:wrap; gap:4px; margin-top:7px; }
.ind-tag-preview { font-size:11px; background:var(--gray100); padding:2px 9px; border-radius:20px; border:1px solid var(--gray200); color:var(--gray600); }
.ind-upload-zone { border:2px dashed var(--gray200); border-radius:8px; padding:24px; text-align:center; transition:border-color .2s; }
.ind-upload-zone.dragover { border-color:var(--orange); background:#fff8f5; }
.ind-upload-zone p { color:var(--gray400); font-size:13px; margin:6px 0; }
.ind-upload-label { display:inline-block; padding:7px 18px; border:1px solid var(--gray200); border-radius:6px; font-size:13px; cursor:pointer; color:var(--gray600); background:#fff; transition:.15s; }
.ind-upload-label:hover { border-color:var(--orange); color:var(--orange); }
.ind-upload-thumbs { display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.ind-thumb-item { position:relative; width:90px; height:72px; border-radius:6px; overflow:hidden; border:1px solid var(--gray200); }
.ind-thumb-item img { width:100%; height:100%; object-fit:cover; }
.ind-thumb-remove { position:absolute; top:3px; right:3px; width:18px; height:18px; background:rgba(220,38,38,.9); border:none; border-radius:50%; color:#fff; cursor:pointer; font-size:11px; display:flex; align-items:center; justify-content:center; }

/* Single Company */
.ind-single { max-width:1060px; margin:0 auto; padding:24px 16px 60px; font-family:var(--font); }
.ind-breadcrumb { font-size:12px; color:var(--gray400); display:flex; align-items:center; gap:5px; flex-wrap:wrap; margin-bottom:20px; }
.ind-breadcrumb a { color:var(--gray400); text-decoration:none; }
.ind-breadcrumb a:hover { color:var(--orange); }
.ind-company-header { background:#fff; border:1px solid var(--gray200); border-radius:10px; padding:22px; display:flex; gap:18px; margin-bottom:18px; flex-wrap:wrap; }
.ind-company-logo { width:80px; height:80px; border-radius:8px; object-fit:cover; border:1px solid var(--gray200); flex-shrink:0; }
.ind-logo-fallback { width:80px; height:80px; border-radius:8px; background:var(--blue); color:#fff; display:flex; align-items:center; justify-content:center; font-size:26px; font-weight:700; flex-shrink:0; }
.ind-company-info { flex:1; min-width:0; }
.ind-company-info h1 { font-size:20px; font-weight:700; color:var(--gray800); margin-bottom:4px; line-height:1.25; }
.ind-company-cat { font-size:11px; color:var(--orange); font-weight:700; text-transform:uppercase; margin-bottom:5px; letter-spacing:.4px; }
.ind-company-addr { font-size:13px; color:var(--gray400); margin-bottom:12px; }
.ind-company-btns { display:flex; gap:7px; flex-wrap:wrap; }
.ind-cta-btn { padding:8px 18px; border-radius:6px; font-size:13px; font-weight:600; cursor:pointer; text-decoration:none; border:none; font-family:var(--font); display:inline-flex; align-items:center; gap:5px; transition:.15s; }
.ind-cta-btn--primary { background:var(--orange); color:#fff; }
.ind-cta-btn--primary:hover { background:var(--orange2); color:#fff; text-decoration:none; }
.ind-cta-btn--outline { background:#fff; color:var(--gray700); border:1px solid var(--gray200); }
.ind-cta-btn--outline:hover { border-color:var(--orange); color:var(--orange); text-decoration:none; }
.ind-single__layout { display:grid; grid-template-columns:1fr 280px; gap:18px; align-items:start; }
.ind-panel { background:#fff; border:1px solid var(--gray200); border-radius:8px; padding:18px; margin-bottom:14px; }
.ind-panel h2, .ind-panel h3 { font-size:14px; font-weight:600; color:var(--gray800); margin-bottom:12px; padding-bottom:9px; border-bottom:1px solid var(--gray100); }
.ind-gallery__main { border-radius:8px; overflow:hidden; height:280px; position:relative; margin-bottom:8px; }
.ind-gallery__main img { width:100%; height:100%; object-fit:cover; transition:opacity .22s; }
.ind-gallery__nav { position:absolute; top:50%; transform:translateY(-50%); width:32px; height:32px; background:rgba(0,0,0,.48); border:none; color:#fff; border-radius:50%; cursor:pointer; font-size:17px; display:flex; align-items:center; justify-content:center; }
.ind-gallery__prev { left:10px; }
.ind-gallery__next { right:10px; }
.ind-gallery__counter { position:absolute; bottom:8px; right:10px; background:rgba(0,0,0,.5); color:#fff; font-size:11px; padding:2px 9px; border-radius:20px; }
.ind-gallery__thumbs { display:flex; gap:6px; overflow-x:auto; }
.ind-gallery__thumb { width:60px; height:46px; border-radius:5px; overflow:hidden; cursor:pointer; border:2px solid transparent; flex-shrink:0; transition:border-color .12s; }
.ind-gallery__thumb img { width:100%; height:100%; object-fit:cover; }
.ind-gallery__thumb.active { border-color:var(--orange); }
.ind-products { display:flex; flex-wrap:wrap; gap:7px; }
.ind-product-chip { font-size:12px; padding:4px 12px; border-radius:20px; background:var(--gray100); border:1px solid var(--gray200); color:var(--gray600); }
.ind-contact-list { display:flex; flex-direction:column; gap:10px; list-style:none; }
.ind-contact-list li { display:flex; gap:10px; align-items:flex-start; font-size:13px; }
.ind-cl-icon { width:30px; height:30px; background:#fff5f0; border-radius:6px; display:flex; align-items:center; justify-content:center; color:var(--orange); flex-shrink:0; font-size:14px; }
.ind-cl-text small { display:block; font-size:10px; color:var(--gray400); font-weight:600; text-transform:uppercase; letter-spacing:.3px; margin-bottom:1px; }
.ind-cl-text a { color:var(--gray800); text-decoration:none; font-weight:500; font-size:13px; }
.ind-cl-text a:hover { color:var(--orange); }
.ind-person { display:flex; gap:10px; padding-bottom:10px; margin-bottom:10px; border-bottom:1px solid var(--gray100); }
.ind-person:last-child { border-bottom:none; padding-bottom:0; margin-bottom:0; }
.ind-person__avatar { width:34px; height:34px; background:var(--blue); color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; flex-shrink:0; }
.ind-person__info strong { display:block; font-size:13px; color:var(--gray800); }
.ind-person__info small { font-size:11px; color:var(--gray400); }
.ind-person__info a { font-size:11px; color:var(--orange); text-decoration:none; display:block; }
.ind-dl { font-size:13px; display:grid; grid-template-columns:auto 1fr; gap:7px 14px; }
.ind-dl dt { color:var(--gray400); font-weight:500; white-space:nowrap; }
.ind-dl dd { color:var(--gray800); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width:768px) {
  .ind-auth-split { grid-template-columns:1fr; }
  .ind-auth-left { display:none; }
  .ind-row-2,.ind-row-3 { grid-template-columns:1fr; }
  .ind-company-header { flex-direction:column; }
  .ind-single__layout { grid-template-columns:1fr; }
  .ind-dash-stats { grid-template-columns:repeat(2,1fr); }
  .ind-layout { grid-template-columns:1fr; }
  .ind-sidebar { display:none; }
}
@media (max-width:480px) {
  .ind-grid-view { grid-template-columns:1fr 1fr; gap:10px; }
  .ind-page-header { flex-direction:column; align-items:flex-start; }
}
