@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;700;800&display=swap');

:root {
  --font-en: 'Inter', sans-serif;
  --font-bn: 'Hind Siliguri', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --bg-deep: #fdfbf7;
  --bg-card: rgba(255, 255, 255, 0.7);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  --border-glass: rgba(0, 0, 0, 0.08);
  --border-glass-hover: rgba(0, 0, 0, 0.15);
  
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --accent-gold: #f59e0b;
  --accent-gold-glow: rgba(245, 158, 11, 0.3);
  --accent-orange: #ea580c;
  --accent-cyan: #0891b2;
  --accent-green: #059669;
  --accent-red: #dc2626;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

* { box-sizing: border-box; }
::selection { background: var(--accent-gold); color: #fff; }
body {
  margin: 0;
  font-family: var(--font-bn);
  background: var(--bg-deep);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -20vh; left: -10vw;
  width: 60vw; height: 60vh;
  background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 60%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: -20vh; right: -10vw;
  width: 50vw; height: 50vh;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.container { width: min(100%, 1080px); margin: 0 auto; padding: 16px; position: relative; z-index: 1; }

/* Typography */
h1, h2, h3, h4, .brand-logo { font-family: var(--font-heading); }
.en-text { font-family: var(--font-en); }

/* Header */
.top-head {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
}
.brand-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; max-width: 1080px; margin: 0 auto; gap: 12px; }
.brand-logo { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo img { height: 36px; width: auto; border-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.brand-actions { display: flex; justify-content: flex-end; flex-shrink: 0; }

.cs-btn {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  color: #fff;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px var(--accent-gold-glow);
  transition: all 0.3s ease;
  border: none;
}
.cs-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--accent-gold-glow); }

/* Navigation */
.menu-row {
  display: flex; gap: 8px; overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
.menu-row::-webkit-scrollbar { display: none; }
.menu-row a {
  text-decoration: none;
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600; font-size: 14px; font-family: var(--font-en);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.menu-row a:hover { background: rgba(0, 0, 0, 0.08); color: var(--text-primary); }
.menu-row a.active {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-gold-glow);
  border: none;
}


/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(234, 88, 12, 0.1));
  padding: 32px 20px;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 12px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.hero-container {
  max-width: 1080px;
  margin: 0 auto;
}
.hero-logo {
  margin-bottom: 16px;
}
.hero-logo img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.3));
}
.hero-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-description {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-secondary);
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.hero-description strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Main Content */
.table-card { margin-top: 32px; text-align: center; }
.trust-strip { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.trust-strip span {
  background: rgba(6, 182, 212, 0.1); border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--accent-cyan); border-radius: var(--radius-full);
  padding: 8px 16px; font-size: 13px; font-family: var(--font-en); font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(8px);
}
.table-card h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 12px; color: var(--text-primary); }

/* Search Form */
.search-form { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; align-items: stretch; }
.search-form input {
  width: min(100%, 400px); padding: 14px 24px;
  background: rgba(255,255,255,0.8); border: 1px solid var(--border-glass);
  border-radius: var(--radius-full); color: var(--text-primary); font-size: 16px; font-family: var(--font-bn);
  outline: none; transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}
.search-form input:focus { border-color: var(--accent-gold); box-shadow: 0 0 0 3px var(--accent-gold-glow); background: #fff; }
.search-form button {
  padding: 14px 32px; border: none; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange)); color: #fff; font-weight: 700; font-size: 16px; font-family: var(--font-en);
  cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 14px var(--accent-gold-glow);
}
.search-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--accent-gold-glow); }

/* Agent List (Table format) */
.agent-list-grid {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.table-header-title {
  background: #f1f5f9;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-glass);
  font-family: var(--font-en);
}

.agent-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #fff;
  border-bottom: 1px solid var(--border-glass);
  transition: background 0.2s ease;
  flex-wrap: nowrap;
  gap: 12px;
}
.agent-card:nth-child(even) {
  background: #f8fafc;
}
.agent-card:hover {
  background: #f1f5f9;
}
.agent-card:last-child {
  border-bottom: none;
}

.agent-id {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: underline;
  width: 60px;
}

.agent-type {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-primary);
  font-family: var(--font-en);
  width: 100px;
}

.agent-platforms {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: underline;
  flex: 1;
  min-width: 150px;
  text-transform: uppercase;
}

.agent-contact {
  display: flex;
  align-items: center;
}

.agent-phone {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: underline;
  min-width: 140px;
  text-align: right;
}

.agent-actions {
  min-width: 80px;
  text-align: right;
}

.btn-complain {
  font-weight: 800;
  font-size: 15px;
  color: var(--text-primary);
  text-decoration: underline;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  font-family: var(--font-bn);
  cursor: pointer;
}
.btn-complain:hover {
  color: var(--accent-orange);
  transform: none;
  box-shadow: none;
}

/* Skeleton */
.skeleton-card {
  height: 50px;
  background: linear-gradient(90deg, rgba(0,0,0,0.02) 25%, rgba(0,0,0,0.06) 50%, rgba(0,0,0,0.02) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-bottom: 1px solid var(--border-glass);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Info Sections */
.info-section {
  background: var(--bg-card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass); border-radius: var(--radius-lg);
  padding: 40px; margin-top: 40px;
}
.info-section h2 { font-size: clamp(22px, 4vw, 28px); color: var(--text-primary); margin-bottom: 24px; border-bottom: 1px solid var(--border-glass); padding-bottom: 16px; }
.info-section p { color: var(--text-secondary); margin-bottom: 16px; font-size: 16px; }
.info-section strong { color: var(--text-primary); }

.how-list { padding-left: 0; list-style: none; counter-reset: my-awesome-counter; }
.how-list li {
  position: relative; padding-left: 56px; margin-bottom: 24px; color: var(--text-secondary); font-size: 16px;
}
.how-list li::before {
  counter-increment: my-awesome-counter;
  content: counter(my-awesome-counter);
  position: absolute; left: 0; top: -4px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-gold); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-en);
  box-shadow: 0 0 16px var(--accent-gold-glow);
}
.how-list li strong { color: var(--text-primary); display: block; margin-bottom: 4px; font-size: 18px; }

.info-note {
  background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-sm); padding: 16px 20px; font-size: 15px; color: var(--text-primary);
  display: flex; gap: 12px; align-items: flex-start;
}
.info-note i, .info-note__icon { color: #d97706; font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.info-note__text { flex: 1; word-break: break-word; overflow-wrap: anywhere; }

/* FAQ Section */
.faq-section { margin-top: 60px; }
.faq-section h2 { font-size: clamp(24px, 5vw, 32px); color: var(--text-primary); text-align: center; margin-bottom: 40px; }
details {
  background: var(--bg-card); border: 1px solid var(--border-glass); backdrop-filter: blur(16px);
  border-radius: var(--radius-md); margin-bottom: 16px; overflow: hidden;
  transition: all 0.3s ease;
}
details[open] { border-color: rgba(245, 158, 11, 0.3); background: rgba(0, 0, 0, 0.03); }
summary {
  padding: 24px; font-weight: 600; font-size: 18px; color: var(--text-primary); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+'; font-size: 28px; color: var(--accent-gold); font-family: var(--font-en); transition: transform 0.3s ease; line-height: 1;
}
details[open] summary::after { transform: rotate(45deg); }
details > div { padding: 0 24px 24px; color: var(--text-secondary); line-height: 1.7; font-size: 16px; border-top: 1px solid rgba(0,0,0,0.05); margin-top: 16px; padding-top: 16px; }

/* Video */
.video-section { margin-top: 60px; text-align: center; }
.video-section__title { font-size: clamp(24px, 5vw, 32px); color: var(--text-primary); margin-bottom: 32px; }
.video-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: var(--radius-lg); border: 1px solid var(--border-glass);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  background: #000 url('https://img.youtube.com/vi/4cmI0ZeHjyY/maxresdefault.jpg') center/cover no-repeat;
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Footer */
.mini-footer {
  margin-top: 80px; padding: 60px 20px; text-align: center;
  border-top: 1px solid var(--border-glass); background: rgba(255,255,255,0.4);
  backdrop-filter: blur(16px);
}
.footer-inner { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.footer-brand img { height: 36px; border-radius: 4px; opacity: 0.9; }
.footer-copy { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center; font-size: 15px; color: var(--text-secondary); }
.footer-domain { color: var(--accent-gold); text-decoration: none; font-weight: 700; }
.footer-domain:hover { text-decoration: underline; }

.footer-nav { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.footer-nav a { color: var(--text-secondary); text-decoration: none; font-size: 15px; font-weight: 600; transition: color 0.3s; }
.footer-nav a:hover { color: var(--text-primary); }

.footer-social { display: flex; justify-content: center; gap: 16px; }
.footer-social__link {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,0.05); color: var(--text-primary); border: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}
.footer-social__link:hover { background: var(--accent-gold); color: #fff; transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.footer-social__link span { display: none; }

.footer-desc { font-size: 13px; color: var(--text-muted); max-width: 600px; line-height: 1.6; }
.footer-updated { margin-top: 24px; font-size: 12px; color: var(--text-muted); }

/* ── Responsive ── */
@media (max-width: 768px) {
  /* Header: logo left, cs-btn right, nav below full-width — COMPACT */
  .brand-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 6px;
    padding: 8px 12px;
    align-items: center;
  }
  .brand-logo  { grid-column: 1; grid-row: 1; justify-content: flex-start; }
  .brand-actions { grid-column: 2; grid-row: 1; justify-content: flex-end; }
  .menu-row {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding: 0 0 6px;
    gap: 5px;
    overflow-x: auto;
  }
  .menu-row a { padding: 7px 13px; font-size: 12px; white-space: nowrap; }

  /* CS button smaller on mobile */
  .cs-btn { padding: 7px 12px; font-size: 12px; white-space: nowrap; }

  /* Logo size */
  .brand-logo img { height: 28px; }

  /* Hero — minimal padding on mobile */
  .hero-section { padding: 16px 12px; margin: 8px 0; border-radius: var(--radius-md); }
  .hero-logo { margin-bottom: 10px; }
  .hero-logo img { max-width: 80%; }
  .hero-title { margin-bottom: 8px; }
  .hero-description { margin-bottom: 12px; font-size: 14px; }

  /* Trust strip — wrap nicely, no overflow */
  .trust-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 20px;
  }
  .trust-strip span {
    font-size: 12px;
    padding: 8px 12px;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
  }

  /* Search */
  .search-form { flex-direction: column; gap: 10px; }
  .search-form input, .search-form button { width: 100%; }

  /* Info sections */
  .info-section { padding: 20px 16px; }
  .table-card h2 { font-size: 22px; }

  /* Warning / info-note — fix broken layout */
  .info-note {
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    padding: 14px 14px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .info-note i { font-size: 17px; }

  /* Agent cards — two-row layout */
  .agent-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    padding: 12px 14px;
    align-items: center;
  }
  .agent-id {
    grid-column: 1; grid-row: 1;
    font-size: 13px;
    width: auto;
    min-width: 42px;
  }
  .agent-type {
    grid-column: 2; grid-row: 1;
    font-size: 13px;
    width: auto;
  }
  .agent-platforms {
    grid-column: 3; grid-row: 1;
    font-size: 12px;
    min-width: unset;
    flex: unset;
    text-align: right;
  }
  .agent-contact {
    grid-column: 1 / 3; grid-row: 2;
    align-items: center;
  }
  .agent-phone {
    font-size: 17px;
    min-width: unset;
    text-align: left;
  }
  .agent-actions {
    grid-column: 3; grid-row: 2;
    min-width: unset;
    text-align: right;
  }
  .btn-complain { font-size: 13px; }

  /* Table header */
  .table-header-title { padding: 12px 14px; font-size: 14px; }

  /* FAQ */
  summary { padding: 16px; font-size: 15px; }
  details > div { padding: 0 16px 16px; font-size: 14px; }

  /* Container padding */
  .container { padding: 10px; }

  /* Footer compact */
  .mini-footer { padding: 40px 16px; margin-top: 48px; }
}

@media (max-width: 420px) {
  .agent-phone { font-size: 15px; }
  .agent-platforms { font-size: 11px; }
  .menu-row a { padding: 6px 10px; font-size: 11px; }
  .cs-btn { padding: 6px 10px; font-size: 11px; }
  .brand-logo img { height: 24px; }
  .hero-section { padding: 12px 10px; }
  .trust-strip span { font-size: 11px; padding: 7px 10px; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 0; background: var(--accent-gold); color: #000;
  padding: 12px 24px; font-weight: 700; z-index: 9999; text-decoration: none;
  transition: top 0.2s; border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }
