.elementor-536 .elementor-element.elementor-element-ec20339{width:100%;max-width:100%;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ec20339 *//* ============================================================
   EXPERTS OF DIGITAL WORLD — ASSIGNMENT CATALOGUE STYLESHEET
   ============================================================ */

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #2c2c2c;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  --orange: #f16700;
  --orange-dark: #d45a00;
  --orange-light: #fff1e6;
  --blue: #1146a6;
  --blue-light: #eef4ff;
  --text: #2c2c2c;
  --text-muted: #8a8a8a;
  --text-soft: #5f5f5f;
  --border: #e6e6ee;
  --bg-soft: #f7f8fc;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 1px 2px 8px rgba(177, 189, 214, .35);
  --shadow-md: 0 12px 30px rgba(17, 70, 166, .12);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .12);
}

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-soft);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-soft);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .section-title {
    font-size: 1.7rem;
  }
}

/* ---------- HEADER ---------- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .09);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
}

.logo-text span:last-child {
  font-size: 11px;
  color: var(--orange);
  font-weight: 500;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

nav a:hover {
  color: var(--orange);
}

.nav-btn {
  background: var(--orange);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: all .2s !important;
}

.nav-btn:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 14px rgba(241, 103, 0, .4);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-menu{
    display:none;
}

.mobile-menu.active{
    display:flex;
    flex-direction:column;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  padding: 24px;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

/* ---------- BADGE STRIP ---------- */
.badge-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e0eaff;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 20px;
}

.badge-strip span {
  background: var(--blue);
  color: #fff;
  border-radius: 30px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
}

/* ---------- HERO ---------- */
.catalogue-hero {
  background: linear-gradient(135deg, #fff9f2 0%, #eef4ff 100%);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.catalogue-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 103, 0, .1), transparent 70%);
}

.catalogue-hero::after {
  content: '';
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 70, 166, .08), transparent 70%);
}

.catalogue-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(30deg, var(--orange) 20%, var(--blue) 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}

.catalogue-hero p {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.hero-cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 15px 34px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(241, 103, 0, .35);
  transition: all .25s;
}

.hero-cta-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(241, 103, 0, .45);
}

/* ---------- SEARCH + FILTER ---------- */
.search-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 28px 30px;
  max-width: 900px;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 18px;
  transition: border-color .2s;
}

.search-box:focus-within {
  border-color: var(--blue);
  background: #fff;
}

.search-box i {
  color: var(--text-muted);
  font-size: 15px;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
}

.search-box input::placeholder {
  color: #a8a8b8;
}

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-chip {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  background: #fff;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all .2s;
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* ---------- MAIN LAYOUT (SIDEBAR + CONTENT) ---------- */
.catalogue-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  padding: 56px 0 30px;
}

@media (max-width: 960px) {
  .catalogue-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------- STICKY SIDEBAR ---------- */
.sidebar {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 960px) {
  .sidebar {
    position: static;
  }
}

.sidebar h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 26px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 10px 12px;
  border-radius: 8px;
  transition: all .2s;
}

.sidebar-nav a i {
  width: 18px;
  text-align: center;
  color: var(--blue);
  font-size: 13px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--orange-light);
  color: var(--orange);
}

.sidebar-nav a:hover i,
.sidebar-nav a.active i {
  color: var(--orange);
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

.sidebar-stat-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 12.5px;
  color: var(--text-soft);
}

.sidebar-stat-mini strong {
  color: var(--blue);
  font-weight: 700;
}

/* ---------- CATALOGUE CONTENT ---------- */
.catalogue-content {
  min-width: 0;
}

.category-block {
  margin-bottom: 60px;
  scroll-margin-top: 90px;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  gap: 16px;
  flex-wrap: wrap;
}

.category-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.category-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange-light), var(--blue-light));
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.category-header h2 {
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 800;
}

.category-header p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.category-count {
  background: var(--blue-light);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  white-space: nowrap;
}

/* ---------- CATALOGUE GRID ---------- */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ---------- PREMIUM GLASSMORPHISM CARD ---------- */
.catalogue-card {
  position: relative;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(135deg, var(--orange), var(--blue));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s;
}

.catalogue-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* -- Media / Image Placeholder -- */
.card-media {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-light), var(--orange-light));
  color: var(--blue);
}

.media-placeholder i {
  font-size: 1.8rem;
  opacity: .55;
}

.media-placeholder span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .03em;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 4px 11px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(241, 103, 0, .35);
}

.file-badge.badge-blue {
  background: var(--blue);
  box-shadow: 0 4px 10px rgba(17, 70, 166, .3);
}

/* -- Card Body -- */
.card-body {
  padding: 20px 20px 22px;
}

.card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-body p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  min-height: 40px;
}

/* -- Card Actions -- */
.card-actions {
  display: flex;
  gap: 10px;
}

.card-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.card-btn i {
  font-size: .82rem;
}

.btn-preview {
  background: var(--blue-light);
  color: var(--blue);
}

.btn-preview:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-download {
  background: var(--orange-light);
  color: var(--orange);
}

.btn-download:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.btn-video {
  background: #f3f0ff;
  color: #6a3fd6;
}

.btn-video:hover {
  background: #6a3fd6;
  color: #fff;
  transform: translateY(-2px);
}

/* -- Button ripple -- */
.ripple-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
  transform: scale(0);
  animation: rippleAnim .6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

/* No-results message */
.no-results {
  display: none;
  text-align: center;
  padding: 50px 20px;
  color: var(--text-muted);
}

.no-results i {
  font-size: 2rem;
  color: var(--border);
  margin-bottom: 14px;
  display: block;
}

.no-results.show {
  display: block;
}

/* ---------- STATISTICS ---------- */
.stats-strip {
  background: linear-gradient(135deg, var(--blue), #0b2d6b);
  border-radius: 22px;
  padding: 46px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(241, 103, 0, .18);
}

@media (max-width: 760px) {
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }
}

.stat-item {
  position: relative;
  z-index: 1;
}

.stat-item h3 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-item span {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
  margin-top: 6px;
  display: block;
}

/* ---------- WHY CHOOSE US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.why-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.why-card h4 {
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 700;
}

.why-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item.open {
  border-color: var(--orange);
}

.faq-question {
  padding: 18px 22px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--orange);
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  font-size: .88rem;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(120deg, var(--orange), #ff9142);
  border-radius: 22px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -140px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.cta-section h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-section p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .9);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: .92rem;
}

.cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--orange-dark);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .92rem;
  border: none;
  cursor: pointer;
  transition: all .25s;
}

.cta-btn:hover {
  background: #2c2c2c;
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- VIDEO / PREVIEW MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .65);
  backdrop-filter: blur(4px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 640px;
  padding: 0;
  position: relative;
  overflow: hidden;
  animation: modalSlideUp .3s ease;
}

@keyframes modalSlideUp {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  color: var(--text);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
}

.modal-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--blue-light), var(--orange-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blue);
}

.modal-media i {
  font-size: 2.6rem;
  opacity: .6;
}

.modal-media span {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.modal-info {
  padding: 20px 24px 26px;
}

.modal-info h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 6px;
}

.modal-info p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4000;
  transform: translateX(140%);
  transition: transform .35s ease;
  max-width: 320px;
}

.toast.show {
  transform: translateX(0);
}

.toast i {
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.toast span {
  font-size: .84rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

/* ---------- FOOTER ---------- */
footer {
  background: #f4f4f4;
  padding-top: 40px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #ddd;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s;
}

.social-icon:hover {
  background: var(--orange);
  color: #fff;
}

.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--orange);
}

/* ---------- RESPONSIVE TWEAKS ---------- */
@media (max-width: 768px) {
  .catalogue-hero h1 {
    font-size: 2.1rem;
  }
  .search-wrap {
    margin-top: -24px;
    padding: 22px 18px;
  }
  .category-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats-strip {
    padding: 34px 20px;
  }
  .cta-section {
    padding: 42px 24px;
  }
}/* End custom CSS */