/* ════════════════════════════════════════════════
   DistribuLink – style.css  v2
   Design: Deep Navy + Amber Gold
   Fonts: Syne (display) + DM Sans (body)
   Fully responsive: Desktop / Tablet / Mobile
════════════════════════════════════════════════ */

/* ── 1. CSS VARIABLES ── */
/*:root {*/
/*  --navy-950: #050c1a;*/
/*  --navy-900: #0a1628;*/
/*  --navy-800: #0f1f3d;*/
/*  --navy-700: #162850;*/
/*  --navy-600: #1e3a6e;*/
/*  --navy-500: #2952a0;*/
/*  --navy-400: #3d6bc4;*/
/*  --gold-600: #d97706;*/
/*  --gold-500: #f59e0b;*/
/*  --gold-400: #fbbf24;*/
/*  --gold-300: #fcd34d;*/
/*  --emerald: #10b981;*/
/*  --red: #ef4444;*/
/*  --violet: #6366f1;*/
/*  --teal: #14b8a6;*/
/*  --white: #ffffff;*/
/*  --gray-50: #f8fafc;*/
/*  --gray-100: #f1f5f9;*/
/*  --gray-200: #e2e8f0;*/
/*  --gray-300: #cbd5e1;*/
/*  --gray-400: #94a3b8;*/
/*  --gray-500: #64748b;*/
/*  --gray-600: #475569;*/
/*  --gray-700: #334155;*/
/*  --gray-800: #1e293b;*/
/*  --gray-900: #0f172a;*/

/*  --font-display: 'Manrope', sans-serif;*/
/*  --font-body: 'Poppins', sans-serif;*/
  
/*  --radius-xs: 4px;*/
/*  --radius-sm: 6px;*/
/*  --radius-md: 10px;*/
/*  --radius-lg: 16px;*/
/*  --radius-xl: 24px;*/

/*  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.06);*/
/*  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);*/
/*  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);*/
/*  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);*/
/*  --shadow-gold: 0 4px 20px rgba(245, 158, 11, 0.28);*/
/*  --shadow-navy: 0 6px 24px rgba(10, 22, 40, 0.40);*/

/*  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);*/
/*  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);*/

/*  --topbar-h: 36px;*/
/*  --header-h: 62px;*/
/*  --container: 1240px;*/
/*  --hero-h: 420px;*/
/*}*/

/* ── 1. CSS VARIABLES (Updated Client Theme) ── */
:root {

 /* NEW PRIMARY BLUE SHADES (Base: #012746) */
--navy-950: #000b1f;
--navy-900: #00163d;
--navy-800: #00225c;
--navy-700: #003180;
--navy-600: #004099;
--navy-500: #1a5ab5;
--navy-400: #3b7ad6;


/* NEW ACCENT GREEN SHADES (Base: #2C9A40) */
/* Note: Names kept as '--gold-*' to avoid breaking existing CSS structure */
--gold-600: #2C9A40; /* Darker Green */
--gold-500: #2C9A40; /* Client Main Green */
--gold-400: #49b35d; /* Slightly lighter */
--gold-300: #6fca7f; /* Soft light green */


/* Keep variable names same */
/* --gold-600: #A85A2A;
--gold-500: #C76B35;
--gold-400: #DB8A5C;
--gold-300: #E8B091; */

  /* STANDARD UTILITY COLORS (Unchanged) */
  --emerald: #10b981;
  --red: #ef4444;
  --violet: #6366f1;
  --teal: #14b8a6;
  --white: #ffffff;
  
  /* GRAYS (Unchanged) */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* FONTS & OTHERS (Unchanged) */
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  
  /* Update shadow colors to match new client theme */
  --shadow-gold: 0 4px 20px rgba(186, 253, 212, 0.35); /* Using new Red */
  --shadow-navy: 0 6px 24px rgba(0, 64, 153, 0.35); /* Using new Blue */

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --topbar-h: 36px;
  --header-h: 62px;
  --container: 1240px;
  --hero-h: 420px;
}

/* ── 2. RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

img {
  max-width: 100%;
  display: block
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit
}

svg,
i {
  flex-shrink: 0
}

/* ── 3. LAYOUT UTILITIES ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px
}

.section {
  padding: 72px 0
}

.section-header {
  margin-bottom: 36px
}

.section-header.centered {
  text-align: center;
  max-width: 560px;
  margin-inline: auto
}

.section-header.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-600);
  background: rgba(245, 158, 11, .10);
  border: 1px solid rgba(245, 158, 11, .20);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 10px
}

.section-sub {
  color: var(--gray-500);
  font-size: .95rem;
  line-height: 1.65
}

/* ── 4. SHARED BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .86rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none
}

.btn-post {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .84rem
}

.btn-post:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245, 158, 11, .45)
}

.btn-outline-dark {
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 8px 18px;
  font-weight: 600;
  font-size: .84rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition)
}

.btn-outline-dark:hover {
  border-color: var(--navy-500);
  color: var(--navy-800)
}

.btn-outline-primary {
  border: 2px solid var(--navy-600);
  color: var(--navy-700);
  background: transparent;
  padding: 11px 26px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition)
}

.btn-outline-primary:hover {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800)
}

.btn-contact {
  flex: 1;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--white);
  padding: 9px 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .8rem;
  transition: all var(--transition)
}

.btn-contact:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold)
}

.btn-save {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: var(--gray-400);
  display: grid;
  place-items: center;
  font-size: .9rem;
  transition: all var(--transition)
}

.btn-save:hover,
.btn-save.saved {
  border-color: var(--gold-400);
  color: var(--gold-500);
  background: rgba(245, 158, 11, .08)
}

/* ════════════════════════════════════════════════
   TOPBAR
════════════════════════════════════════════════ */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .65);
  font-size: .75rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  position: sticky;
  top: 0;
  z-index: 200
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar-h);
  gap: 12px
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .60);
  transition: color var(--transition)
}

.topbar-contact:hover {
  color: var(--gold-400)
}

.topbar-contact i {
  color: var(--gold-500);
  font-size: .7rem
}

.topbar-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(245, 158, 11, .12);
  color: var(--gold-400);
  padding: 2px 10px;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, .22);
  font-weight: 600;
  font-size: .7rem
}

.topbar-badge i {
  font-size: .62rem
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px
}

.topbar-icon-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .60);
  transition: color var(--transition)
}

.topbar-icon-btn:hover {
  color: var(--gold-400)
}

.topbar-register {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: .72rem;
  transition: all var(--transition)
}

.topbar-register:hover {
  background: var(--gold-400);
  transform: scale(1.04)
}

.topbar-hide-sm {
  /* hidden on small, overridden below */
}

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: var(--topbar-h);
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition)
}

.header.scrolled {
  box-shadow: var(--shadow-md)
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 16px
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--gold-400);
  font-size: 1rem;
  box-shadow: var(--shadow-navy);
  flex-shrink: 0
}

.logo-icon.sm {
  width: 30px;
  height: 30px;
  font-size: .85rem;
  border-radius: 7px
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy-900);
  letter-spacing: -.03em;
  white-space: nowrap
}

.logo-accent {
  color: var(--gold-500)
}

/* Header Search */
.header-search-wrap {
  flex: 1;
  min-width: 0;
  max-width: 560px
}

.header-search-box {
  display: flex;
  align-items: center;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  height: 40px
}

.header-search-box:focus-within {
  border-color: var(--navy-400);
  box-shadow: 0 0 0 3px rgba(61, 107, 196, .12)
}

.search-cat-select {
  border: none;
  background: var(--gray-100);
  padding: 0 12px;
  height: 100%;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  border-right: 1.5px solid var(--gray-200);
  min-width: 0;
  flex-shrink: 0;
  max-width: 130px
}

.search-divider {
  width: 1px;
  height: 20px;
  background: var(--gray-200);
  flex-shrink: 0
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 12px;
  font-size: .875rem;
  color: var(--gray-800);
  outline: none;
  min-width: 0
}

.search-input::placeholder {
  color: var(--gray-400)
}

.search-submit-btn {
  background: var(--navy-800);
  color: var(--white);
  width: 42px;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: background var(--transition)
}

.search-submit-btn:hover {
  background: var(--gold-500);
  color: var(--navy-900)
}

/* Main Nav */
.main-nav {
  flex-shrink: 0
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px
}

.main-nav li {
  position: relative
}

.main-nav li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  font-size: .845rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition)
}

.main-nav li>a:hover,
.main-nav li>a.active {
  color: var(--navy-700);
  background: var(--gray-100)
}

.main-nav .fa-chevron-down {
  transition: transform var(--transition)
}

.main-nav li:hover .fa-chevron-down {
  transform: rotate(180deg)
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 50
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  font-size: .83rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: background var(--transition)
}

.dropdown li a:hover {
  background: var(--gray-50);
  color: var(--navy-700)
}

.dropdown li a i {
  color: var(--navy-500);
  width: 14px;
  text-align: center
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm)
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition)
}

/* Mobile Search Row (below header on mobile) */
.mobile-search-row {
  display: none;
  padding: 8px 0;
  border-top: 1px solid var(--gray-100);
  background: var(--white)
}

.mobile-search-box {
  height: 38px
}

.mobile-search-box .search-input {
  font-size: .82rem
}

/* ── Mobile Nav Drawer ── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow)
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 275px;
  height: 100vh;
  background: var(--white);
  z-index: 160;
  box-shadow: var(--shadow-lg);
  transition: left var(--transition-slow);
  overflow-y: auto
}

.mobile-nav-drawer.open {
  left: 0
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--navy-900);
  color: var(--white)
}

.mobile-nav-head .logo-text {
  color: var(--white)
}

.mobile-nav-close {
  color: rgba(255, 255, 255, .70);
  font-size: 1.1rem;
  transition: color var(--transition)
}

.mobile-nav-close:hover {
  color: var(--white)
}

.mobile-nav-list {
  padding: 8px
}

.mobile-nav-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  font-size: .9rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition)
}

.mobile-nav-list li a i {
  color: var(--navy-500);
  width: 16px;
  text-align: center
}

.mobile-nav-list li a:hover {
  background: var(--gray-50);
  color: var(--navy-800)
}

.mobile-nav-sep {
  height: 1px;
  background: var(--gray-100);
  margin: 8px 0
}

/* ════════════════════════════════════════════════
   POST REQUIREMENT MODAL
════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 26, .65);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
  overflow-y: auto
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  width: 100%;
  max-width: 560px;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(.97);
  transition: transform var(--transition-slow);
  position: relative;
  max-height: 90vh;
  overflow-y: auto
}

.modal-overlay.open .modal-box {
  transform: none
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-900)
}

.modal-sub {
  font-size: .83rem;
  color: var(--gray-500);
  margin-top: 3px
}

.modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  display: grid;
  place-items: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: all var(--transition)
}

.modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-800)
}

.modal-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  background: var(--gray-50);
  padding: 5px;
  border-radius: var(--radius-md)
}

.modal-tab {
  flex: 1;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all var(--transition)
}

.modal-tab.active {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: var(--shadow-sm)
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.form-group label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-600)
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 9px 12px;
  font-size: .875rem;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-400);
  box-shadow: 0 0 0 3px rgba(61, 107, 196, .10)
}

.form-group textarea {
  resize: vertical;
  min-height: 72px
}

.form-group select {
  cursor: pointer
}

.btn-modal-submit {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .9rem;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: var(--shadow-navy)
}

.btn-modal-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(10, 22, 40, .3)
}

/* ════════════════════════════════════════════════
   HERO – 3 COLUMN LAYOUT
════════════════════════════════════════════════ */
.hero-section {
  background: var(--gray-50);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200)
}

.hero-layout {
  display: grid;
  grid-template-columns: 220px 1fr 310px;
  height: var(--hero-h);
  border-radius: var(--radius-lg);
  overflow: visible; /* <-- Changed from hidden */
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: relative;
  gap : 10px;
}

/* ── LEFT: CATEGORIES ── */
.hero-categories {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--gray-200);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: var(--white);
  position: relative;
  z-index: 30;
}

.hero-cat-header {
  padding: 12px 14px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  letter-spacing: .02em;
  border-radius: var(--radius-lg) 0 0 0; /* Add radius here to match parent */
}

.cat-list {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
  border-radius: 0 0 0 var(--radius-lg); /* Add radius here */
}

.cat-list::-webkit-scrollbar {
  width: 3px
}

.cat-list::-webkit-scrollbar-thumb {
  background: var(--gray-200);
  border-radius: 2px
}

.cat-item {
  position: static
}

.cat-item-link {
  position: relative; /* Fixed arrow positioning issue */
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
  border-bottom: 1px solid var(--gray-50)
}

.cat-item-link:hover {
  background: linear-gradient(90deg, rgba(10, 22, 40, .06) 0%, transparent 100%);
  color: var(--navy-800)
}

.cat-ico {
  width: 14px;
  text-align: center;
  color: var(--navy-400);
  font-size: .8rem;
  flex-shrink: 0
}

.cat-item-link span {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

/* SIDEBAR ARROW ONLY */
.cat-arrow {
  color: var(--gray-300);
  font-size: .62rem;
  flex-shrink: 0;
  transition: all var(--transition)
}

.cat-item:hover .cat-arrow {
  color: var(--gold-500);
  transform: translateX(2px)
}

.cat-view-all {
  padding: 9px 12px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy-600);
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
  transition: all var(--transition);
  flex-shrink: 0;
  border-radius: 0 0 0 var(--radius-lg);
}

.cat-view-all:hover {
  color: var(--gold-600);
  gap: 9px
}

/* Category Flyout */
.cat-flyout {
  position: absolute;
  left: 220px;
  top: 0;
  width: 480px;
  height: 100%;
  background: var(--white);
  border-left: 1px solid var(--gray-100);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 20;
  box-shadow: 8px 0 32px rgba(0, 0, 0, .08) inset;
  overflow-y: auto
}

.cat-item:hover .cat-flyout {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.flyout-head {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100)
}

.flyout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px
}

.flyout-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 10px 6px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition);
  text-align: center
}

.flyout-item:hover {
  border-color: var(--gray-200);
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xs)
}

.flyout-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0
}

.flyout-item span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.3
}

.flyout-item:hover span {
  color: var(--navy-800)
}

/* ── CENTRE: BANNER SLIDER ── */
.hero-banner {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  flex: 1
}

.banner-track {
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.77, 0, .18, 1)
}

.banner-slide {
  display: block;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden
}

.banner-slide:focus {
  outline: 2px solid var(--gold-400);
  outline-offset: -2px
}

.banner-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: transform var(--transition-slow)
}

.banner-slide:hover .banner-bg {
  transform: scale(1.02)
}

/* Banner gradient designs */
.banner-bg-1 {
  background: linear-gradient(135deg, #050c1a 0%, #0f2c6b 35%, #1a4fa0 65%, #0d3a7a 100%);
  position: relative;
  overflow: hidden
}

.banner-bg-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245, 158, 11, .25) 0%, transparent 65%)
}

.banner-bg-1::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(41, 82, 160, .30);
  filter: blur(60px)
}

.banner-bg-2 {
  background: linear-gradient(120deg, #052e16 0%, #065f46 40%, #0d9488 80%, #0f766e 100%);
  position: relative;
  overflow: hidden
}

.banner-bg-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(253, 230, 138, .18) 0%, transparent 55%)
}

.banner-bg-2::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(16, 185, 129, .25);
  filter: blur(50px)
}

.banner-bg-3 {
  background: linear-gradient(150deg, #450a0a 0%, #7f1d1d 40%, #c2410c 75%, #9a3412 100%);
  position: relative;
  overflow: hidden
}

.banner-bg-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 40%, rgba(253, 186, 116, .20) 0%, transparent 60%)
}

.banner-bg-3::after {
  content: '';
  position: absolute;
  top: -15%;
  right: 15%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(239, 68, 68, .20);
  filter: blur(55px)
}

.banner-bg-4 {
  background: linear-gradient(140deg, #1e1b4b 0%, #312e81 45%, #4c1d95 75%, #5b21b6 100%);
  position: relative;
  overflow: hidden
}

.banner-bg-4::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 60%, rgba(167, 139, 250, .20) 0%, transparent 60%)
}

.banner-bg-4::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -5%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(99, 102, 241, .25);
  filter: blur(45px)
}

/* Decorative grid overlay on banners */
.banner-bg::before {
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 40px 40px
}

/* Banner Controls */
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .8rem;
  transition: all var(--transition);
  z-index: 5
}

.banner-nav:hover {
  background: rgba(255, 255, 255, .25);
  transform: translateY(-50%) scale(1.08)
}

.banner-prev {
  left: 10px
}

.banner-next {
  right: 10px
}

.banner-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5
}

.banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: all var(--transition);
  border: none
}

.banner-dot.active {
  background: var(--gold-400);
  width: 18px;
  border-radius: 3px
}

/* ── RIGHT: HERO FORM ── */
.hero-form-panel {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--gray-200);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--white);
  overflow: hidden
}

.form-tab-group {
  display: flex;
  background: var(--navy-900);
  flex-shrink: 0
}

.form-tab-btn {
  flex: 1;
  padding: 9px 8px;
  font-size: .73rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all var(--transition);
  border-bottom: 2px solid transparent
}

.form-tab-btn.active {
  color: var(--gold-400);
  border-bottom-color: var(--gold-400)
}

.form-tab-btn:hover:not(.active) {
  color: rgba(255, 255, 255, .80)
}

.hero-form {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow-y: auto
}

.hf-group {
  display: flex;
  flex-direction: column
}

.hf-input {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  font-size: .78rem;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition)
}

.hf-input:focus {
  border-color: var(--navy-400);
  box-shadow: 0 0 0 2px rgba(61, 107, 196, .10)
}

.hf-input::placeholder {
  color: var(--gray-400)
}

.hf-textarea {
  resize: none;
  min-height: 46px;
  line-height: 1.4
}

.hf-submit {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  padding: 9px 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all var(--transition);
  margin-top: 2px;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold)
}

.hf-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, .45)
}

.hf-disclaimer {
  padding: 6px 12px;
  font-size: .68rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  flex-shrink: 0
}

.hf-disclaimer i {
  color: var(--emerald);
  font-size: .65rem
}

/* ════════════════════════════════════════════════
   LEADS SECTION
════════════════════════════════════════════════ */
.leads-section {
  background: var(--white)
}

.leads-carousel-wrap {
  overflow: hidden;
  position: relative
}

.leads-carousel {
  display: flex;
  gap: 16px;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  padding-bottom: 4px
}

.lead-card {
  flex: 0 0 260px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px
}

.lead-card:hover {
  border-color: var(--navy-300, #93c5fd);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.lead-card-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative
}

.lead-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .82rem;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: .01em
}

.lead-name {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy-900)
}

.lead-location {
  font-size: .72rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px
}

.lead-location i {
  color: var(--navy-400);
  font-size: .65rem
}

.lead-new-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--emerald);
  color: var(--white);
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: .04em
}

.lead-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 10px
}

.lead-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px
}

.ld-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  color: var(--gray-400);
  white-space: nowrap;
  flex-shrink: 0
}

.ld-label i {
  font-size: .62rem;
  color: var(--navy-400)
}

.ld-val {
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy-800);
  text-align: right
}

.lead-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: .78rem;
  font-weight: 600;
  transition: all var(--transition);
  margin-top: auto
}

.lead-view-btn:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold)
}

.carousel-controls {
  display: flex;
  gap: 8px
}

.carousel-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  display: grid;
  place-items: center;
  font-size: .85rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs)
}

.carousel-btn:hover {
  background: var(--navy-800);
  color: var(--gold-400);
  border-color: var(--navy-800);
  transform: scale(1.08)
}

.leads-view-all {
  text-align: center;
  margin-top: 28px
}

/* ════════════════════════════════════════════════
   BROWSE CATEGORIES
════════════════════════════════════════════════ */
.cat-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100)
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1.5px solid transparent;
  text-decoration: none
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.cat-card--fmcg {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border-color: #fed7aa
}

.cat-card--pharma {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-color: #bbf7d0
}

.cat-card--food {
  background: linear-gradient(135deg, #fff1f2, #ffe4e6);
  border-color: #fecdd3
}

.cat-card--agro {
  background: linear-gradient(135deg, #f0fdf4, #d1fae5);
  border-color: #a7f3d0
}

.cat-card--electronics {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: #bfdbfe
}

.cat-card--textile {
  background: linear-gradient(135deg, #fdf4ff, #f3e8ff);
  border-color: #e9d5ff
}

.cat-card--chemical {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-color: #bae6fd
}

.cat-card--auto {
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
  border-color: #d1d5db
}

.cat-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .8);
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-xs);
  margin-bottom: 2px
}

.cat-card--fmcg .cat-icon {
  color: #ea580c
}

.cat-card--pharma .cat-icon {
  color: #16a34a
}

.cat-card--food .cat-icon {
  color: #e11d48
}

.cat-card--agro .cat-icon {
  color: #15803d
}

.cat-card--electronics .cat-icon {
  color: #2563eb
}

.cat-card--textile .cat-icon {
  color: #7c3aed
}

.cat-card--chemical .cat-icon {
  color: #0284c7
}

.cat-card--auto .cat-icon {
  color: #374151
}

.cat-name {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy-900)
}

.cat-count {
  font-size: .73rem;
  color: var(--gray-500);
  font-weight: 500
}

/* BOX ARROW FIX */
.cat-card .cat-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, .55);
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: .75rem;
  color: var(--gray-400);
  transition: all var(--transition)
}

.cat-card:hover .cat-arrow {
  background: var(--navy-800);
  color: var(--gold-400)
}

/* ════════════════════════════════════════════════
   HOT LISTINGS / OPPORTUNITIES
════════════════════════════════════════════════ */
.opp-section {
  background: var(--white)
}

.opp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px
}

.opp-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs)
}

.opp-card:hover {
  border-color: var(--navy-300, #93c5fd);
  box-shadow: 0 8px 36px rgba(14, 30, 61, .10);
  transform: translateY(-3px)
}

.opp-card-header {
  padding: 16px 16px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between
}

.opp-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-xs)
}

.fmcg-logo {
  background: linear-gradient(135deg, #fef3c7, #fbbf24);
  color: #92400e
}

.pharma-logo {
  background: linear-gradient(135deg, #d1fae5, #10b981);
  color: #065f46
}

.food-logo {
  background: linear-gradient(135deg, #fee2e2, #f87171);
  color: #991b1b
}

.agro-logo {
  background: linear-gradient(135deg, #dcfce7, #4ade80);
  color: #166534
}

.fmcg2-logo {
  background: linear-gradient(135deg, #ede9fe, #a78bfa);
  color: #4c1d95
}

.pharma2-logo {
  background: linear-gradient(135deg, #fee2e2, #fb7185);
  color: #881337
}

.opp-badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap
}

.badge {
  font-size: .66rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 3px
}

.badge-verified {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0
}

.badge-featured {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a
}

.badge-new {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe
}

.badge-hot {
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3
}

.opp-card-body {
  padding: 12px 16px;
  flex: 1
}

.opp-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 7px;
  line-height: 1.25
}

.opp-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 9px
}

.opp-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: var(--gray-500)
}

.opp-meta i {
  color: var(--navy-400);
  font-size: .67rem
}

.opp-desc {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.58;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.opp-details {
  display: flex;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden
}

.opp-detail {
  flex: 1;
  padding: 8px 10px;
  text-align: center;
  border-right: 1px solid var(--gray-100)
}

.opp-detail:last-child {
  border-right: none
}

.opp-detail-label {
  font-size: .64rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 2px
}

.opp-detail-val {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy-800);
  font-family: var(--font-display)
}

.opp-card-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 7px;
  align-items: center
}

.opp-view-all {
  text-align: center
}

/* ════════════════════════════════════════════════
   DUAL CTA
════════════════════════════════════════════════ */
.dual-cta-section {
  padding: 64px 0;
  background: var(--navy-950)
}

.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.dual-cta-card {
  border-radius: var(--radius-xl);
  padding: 36px 36px;
  position: relative;
  overflow: hidden
}

.dual-cta-brand {
  background: linear-gradient(140deg, #0f1f3d 0%, #1e3a6e 100%);
  border: 1px solid rgba(255, 255, 255, .07)
}

.dual-cta-dist {
  background: linear-gradient(140deg, #1a0a00 0%, #3d1c00 100%);
  border: 1px solid rgba(245, 158, 11, .13)
}

.dcta-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px
}

.dual-cta-brand .dcta-icon {
  background: rgba(255, 255, 255, .08);
  color: var(--gold-400);
  border: 1px solid rgba(255, 255, 255, .09)
}

.dual-cta-dist .dcta-icon {
  background: rgba(245, 158, 11, .13);
  color: var(--gold-400);
  border: 1px solid rgba(245, 158, 11, .22)
}

.dcta-tag {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px
}

.dual-cta-brand .dcta-tag {
  color: rgba(255, 255, 255, .40)
}

.dual-cta-dist .dcta-tag {
  color: var(--gold-500)
}

.dcta-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 10px
}

.dcta-content p {
  color: rgba(255, 255, 255, .50);
  font-size: .875rem;
  line-height: 1.65;
  margin-bottom: 16px
}

.dcta-perks {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 7px
}

.dcta-perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .83rem;
  color: rgba(255, 255, 255, .65)
}

.dcta-perks li i {
  width: 18px;
  height: 18px;
  background: rgba(245, 158, 11, .18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: .6rem;
  flex-shrink: 0
}

.btn-dcta-brand {
  background: rgba(255, 255, 255, .09);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .18);
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition)
}

.btn-dcta-brand:hover {
  background: var(--white);
  color: var(--navy-900);
  transform: translateY(-2px)
}

.btn-dcta-dist {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold)
}

.btn-dcta-dist:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, .45)
}

/* ════════════════════════════════════════════════
   WHY SECTION
════════════════════════════════════════════════ */
.why-section {
  background: var(--white)
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.why-card {
  padding: 24px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition)
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gray-200)
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 14px
}

.why-icon--blue {
  background: #eff6ff;
  color: #2563eb
}

.why-icon--green {
  background: #f0fdf4;
  color: #16a34a
}

.why-icon--orange {
  background: #fff7ed;
  color: #ea580c
}

.why-icon--purple {
  background: #faf5ff;
  color: #7c3aed
}

.why-icon--red {
  background: #fff1f2;
  color: #e11d48
}

.why-icon--teal {
  background: #f0fdfa;
  color: #0d9488
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 7px
}

.why-card p {
  font-size: .84rem;
  color: var(--gray-500);
  line-height: 1.65
}

/* ════════════════════════════════════════════════
   COUNTER BANNER
════════════════════════════════════════════════ */
.counter-banner {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 48px 0;
  position: relative;
  overflow: hidden
}

.counter-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(245, 158, 11, .07) 0%, transparent 60%);
  pointer-events: none
}

.counter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

.counter-item {
  text-align: center;
  flex: 1;
  min-width: 90px
}

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--gold-400);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 5px
}

.counter-label {
  color: rgba(255, 255, 255, .45);
  font-size: .78rem;
  font-weight: 500
}

/* ════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.testi-section {
  background: var(--gray-50)
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition)
}

.testi-card:hover {
  border-color: rgba(245, 158, 11, .25);
  box-shadow: 0 8px 28px rgba(245, 158, 11, .09);
  transform: translateY(-3px)
}

.testi-stars {
  color: var(--gold-400);
  font-size: .85rem;
  display: flex;
  gap: 2px
}

.testi-quote {
  font-size: .855rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  font-style: italic
}

.testi-quote::before {
  content: '"';
  font-size: 1.8rem;
  color: var(--gold-300);
  line-height: 0;
  vertical-align: -.45rem;
  margin-right: 2px
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: .85rem;
  flex-shrink: 0
}

.testi-name {
  font-weight: 700;
  font-size: .845rem;
  color: var(--navy-900)
}

.testi-role {
  font-size: .72rem;
  color: var(--gray-400)
}

.testi-company-badge {
  margin-left: auto;
  font-size: .62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0
}

.brand-badge {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe
}

.dist-badge {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0
}

/* ════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════ */
.ticker-bar {
  background: var(--gold-500);
  padding: 8px 0;
  overflow: hidden;
  display: flex;
  align-items: center
}

.ticker-label {
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 16px;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px
}

.ticker-track {
  flex: 1;
  overflow: hidden
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.ticker-items {
  display: flex;
  gap: 52px;
  animation: ticker 26s linear infinite;
  white-space: nowrap
}

.ticker-items span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy-900);
  display: inline-block
}

/* ════ BLOG ════ */
.blog-section {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: start;
}

.blog-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-featured {
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.blog-featured:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-img-wrap {
  position: relative;
}

.blog-img {
  height: 240px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-img-1 {
  background: linear-gradient(135deg, #0f1b35, #1e3a6e, #2952a0);
}

.blog-img-2 {
  background: linear-gradient(135deg, #065f46, #059669);
}

.blog-img-3 {
  background: linear-gradient(135deg, #92400e, #b45309);
}

.blog-img-4 {
  background: linear-gradient(135deg, #312e81, #4338ca);
}

.blog-category {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--white);
  color: var(--navy-700);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-600);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.blog-featured:hover .blog-read {
  gap: 10px;
  color: var(--gold-600);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-small {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.blog-small:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.blog-img-sm {
  width: 80px;
  height: 70px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.blog-cat-sm {
  position: static;
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-500);
  background: rgba(41, 82, 160, 0.08);
  border: 1px solid rgba(41, 82, 160, 0.15);
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 6px;
}

.blog-small h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta-sm {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--gray-400);
}

/* ════════════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 52px 0;
  position: relative;
  overflow: hidden
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245, 158, 11, .07) 0%, transparent 55%);
  pointer-events: none
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 18px
}

.newsletter-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 158, 11, .14);
  border: 1px solid rgba(245, 158, 11, .23);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--gold-400);
  flex-shrink: 0
}

.newsletter-left h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px
}

.newsletter-left p {
  color: rgba(255, 255, 255, .45);
  font-size: .84rem
}

.newsletter-right {
  flex: 0 0 400px;
  min-width: 260px
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 10px
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: var(--white);
  font-size: .875rem;
  outline: none;
  transition: all var(--transition)
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .30)
}

.newsletter-form input:focus {
  border-color: var(--gold-400);
  background: rgba(255, 255, 255, .12)
}

.btn-newsletter {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .84rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold)
}

.btn-newsletter:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245, 158, 11, .45)
}

.newsletter-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.newsletter-tags span {
  color: rgba(255, 255, 255, .35);
  font-size: .73rem
}

.newsletter-tags label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .50);
  cursor: pointer;
  transition: color var(--transition)
}

.newsletter-tags label:hover {
  color: var(--gold-300)
}

.newsletter-tags input[type="checkbox"] {
  accent-color: var(--gold-500)
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  background: var(--navy-950);
  color: var(--gray-400)
}

.footer-top {
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px
}

.footer-brand-col p {
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .35);
  margin: 14px 0 18px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white)
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 0
}

.footer-socials a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .35);
  font-size: .82rem;
  transition: all var(--transition)
}

.footer-socials a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-2px)
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-col ul li a {
  font-size: .84rem;
  color: rgba(255, 255, 255, .35);
  transition: all var(--transition);
  display: block
}

.footer-col ul li a:hover {
  color: var(--gold-400);
  padding-left: 4px
}

.footer-bottom {
  padding: 16px 0
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .75rem;
  color: rgba(255, 255, 255, .28)
}

.footer-bottom-links {
  display: flex;
  gap: 16px
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .35);
  transition: color var(--transition)
}

.footer-bottom-links a:hover {
  color: var(--gold-400)
}

.footer-secure {
  display: flex;
  align-items: center;
  gap: 5px
}

.footer-secure i {
  color: var(--emerald)
}

/* ════════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--navy-800);
  color: var(--gold-400);
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: .95rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: all var(--transition);
  z-index: 90;
  border: 1px solid rgba(255, 255, 255, .07)
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}

.back-to-top:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-2px)
}

/* ════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0)
  }

  20% {
    transform: translateX(-5px)
  }

  40% {
    transform: translateX(5px)
  }

  60% {
    transform: translateX(-3px)
  }

  80% {
    transform: translateX(3px)
  }
}

.shake {
  animation: shake .45s ease;
  border-color: var(--red) !important
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease
}

[data-animate].visible {
  opacity: 1;
  transform: none
}


/* ════════════════════════════════════════════════
   RESPONSIVE – TABLET (≤1024px)
════════════════════════════════════════════════ */
@media(max-width:1024px) {
  :root {
    --hero-h: 380px
  }

  .hero-layout {
    grid-template-columns: 190px 1fr 280px
  }

  .cat-flyout {
    left: 190px;
    width: 380px
  }

  .flyout-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .opp-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }

  .footer-brand-col {
    grid-column: span 2
  }

  .dual-cta-grid {
    grid-template-columns: 1fr 1fr
  }

  .cat-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .counter-inner {
    gap: 24px
  }

  .header-search-wrap {
    max-width: 420px
  }
}

/* ════════════════════════════════════════════════
   RESPONSIVE – MOBILE (≤768px)
════════════════════════════════════════════════ */
@media(max-width:768px) {
  :root {
    --topbar-h: 34px;
    --header-h: 54px
  }

  /* Topbar */
  .topbar-hide-sm {
    display: none
  }

  .topbar-badge {
    display: none
  }

  /* Header */
  .main-nav {
    display: none
  }

  .header-search-wrap {
    display: none
  }

  /* replaced by mobile-search-row */
  .mobile-search-row {
    display: block
  }

  .hamburger {
    display: flex
  }

  .search-cat-select {
    display: none
  }

  .search-divider {
    display: none
  }

  /* Hero: stack columns vertically */
  .hero-section {
    padding: 0
  }

  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }

  /* Categories: collapsible accordion on mobile */
  .hero-categories {
    border-right: none;
    border-radius: 0;
    border-bottom: 1px solid var(--gray-100);
    height: auto;
    max-height: none;
  }

  .hero-cat-header {
    cursor: pointer;
    user-select: none
  }

  .hero-cat-header::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    font-size: .7rem;
    transition: transform var(--transition)
  }

  .hero-categories.cat-open .hero-cat-header::after {
    transform: rotate(180deg)
  }

  .cat-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
  }

  .hero-categories.cat-open .cat-list {
    max-height: 400px;
    overflow-y: auto
  }

  .cat-view-all {
    display: none
  }

  .hero-categories.cat-open .cat-view-all {
    display: flex
  }

  /* Flyout: becomes overlay on mobile */
  .cat-flyout {
    position: fixed;
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: 60vh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, .20);
    z-index: 500;
    overflow-y: auto
  }

  .cat-item:hover .cat-flyout {
    display: none
  }

  /* disable hover on mobile; JS handles it */
  .cat-flyout.mobile-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block
  }

  /* Banner: full width */
  .hero-banner {
    height: 220px;
    border-radius: 0
  }

  .banner-nav {
    width: 28px;
    height: 28px;
    font-size: .72rem
  }

  /* Form */
  .hero-form-panel {
    border-left: none;
    border-radius: 0;
    border-top: 1px solid var(--gray-100)
  }

  .form-tab-btn {
    font-size: .7rem;
    padding: 8px 6px;
    gap: 4px
  }

  .hero-form {
    padding: 10px;
    gap: 6px
  }

  /* Leads */
  .leads-carousel {
    gap: 12px
  }

  .lead-card {
    flex: 0 0 240px
  }

  /* Browse cats */
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }

  /* Listings */
  .opp-grid {
    grid-template-columns: 1fr
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr
  }

  /* Dual CTA */
  .dual-cta-grid {
    grid-template-columns: 1fr
  }

  .dual-cta-card {
    padding: 28px 22px
  }

  /* Counter */
  .counter-inner {
    justify-content: center;
    gap: 20px
  }

  .counter-item {
    min-width: 40%
  }

  /* Newsletter */
  .newsletter-inner {
    flex-direction: column;
    align-items: stretch
  }

  .newsletter-right {
    flex: none
  }

  .newsletter-form {
    flex-direction: column
  }

  /* Section header split → stack */
  .section-header.split {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .carousel-controls {
    align-self: flex-end
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .footer-brand-col {
    grid-column: span 1
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 16px;
    width: 38px;
    height: 38px
  }

  /* Modal */
  .modal-box {
    padding: 20px 16px;
    border-radius: var(--radius-lg)
  }

  .form-row-2 {
    grid-template-columns: 1fr
  }
}

/* ════════════════════════════════════════════════
   RESPONSIVE – SMALL MOBILE (≤480px)
════════════════════════════════════════════════ */
@media(max-width:480px) {
  .topbar-contact i {
    display: none
  }

  .section-title {
    font-size: 1.4rem
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
  }

  .cat-card {
    padding: 16px 14px
  }

  .hero-banner {
    height: 180px
  }

  .lead-card {
    flex: 0 0 220px
  }

  .dual-cta-card {
    padding: 22px 16px
  }

  .dcta-content h3 {
    font-size: 1.25rem
  }

  .testi-card {
    padding: 18px
  }

  .section {
    padding: 52px 0
  }
}

/* =========================================
   MOBILE FIXES (Added below existing CSS)
========================================= */

/* ISSUE 2: Sidebar hiding under sub-header */
.mobile-nav-overlay {
  z-index: 998 !important;
}

.mobile-nav-drawer {
  z-index: 999 !important;
}

/* ISSUE 3: Mobile Category Dropdown Styles */
.mobile-nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--gray-700);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-nav-dropdown-toggle:hover {
  background: var(--gray-50);
  color: var(--navy-800);
}

.mobile-nav-dropdown-toggle span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-dropdown-toggle span i {
  color: var(--navy-500);
  width: 16px;
  text-align: center;
}

.mobile-nav-dropdown-toggle .toggle-icon {
  font-size: 0.8rem;
  transition: transform var(--transition);
}

.mobile-nav-dropdown {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding-left: 40px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.mobile-nav-dropdown li a {
  padding: 8px 14px;
  font-size: 0.85rem;
}

/* MEDIA QUERY FOR MOBILE FIXES */
@media(max-width: 768px) {

  /* ISSUE 1: Header Button Overlap (Change text to "Post") */
  #postReqBtn span {
    font-size: 0;
  }

  #postReqBtn span::after {
    content: "Post";
    font-size: 0.84rem;
  }

  /* ISSUE 4: Mobile Spacing Problem (Hero Sections) */
  .hero-layout {
    gap: 24px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .hero-categories,
  .hero-banner,
  .hero-form-panel {
    background: var(--white);
    border: 1px solid var(--gray-200) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-sm);
  }

  /* ISSUE 5: Blog Section Mobile Design (Stack cards) */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ════════════════════════════════════════════════
   CUSTOM ADVERTISEMENT SECTION (DYNAMIC SLIDESHOW)
════════════════════════════════════════════════ */
.dl-ad-section {
  background: transparent;
  padding: 24px 0; 
}

.dl-ad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.dl-ad-card {
  width: 100%;
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 6px; 
  background: transparent;
  display: flex;
  flex-direction: column;
}

.dl-ad-label {
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-bottom: 4px;
  padding-left: 2px;
  font-family: var(--font-body);
}

.dl-ad-link {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 5; /* Image area locked */
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: transparent;
  position: relative; /* Absolute images ko container m rokne ke liye */
}

/* Base Image Setup - Sab chhupi hui hongi (opacity: 0) */
.dl-ad-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0; 
  transition: opacity 0.8s ease-in-out; /* Smooth fade-in and fade-out */
  z-index: 1;
}

/* Active Image Setup - Jo samne aayegi */
.dl-ad-img.active {
  opacity: 1;
  z-index: 2;
}

/* ════ MOBILE RESPONSIVE FIXES ════ */
@media(max-width: 768px) {
  .dl-ad-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .dl-ad-link {
    aspect-ratio: 16 / 6; 
  }
}