/* ============================================
   MAMBOHUKU FARM — PREMIUM CSS DESIGN SYSTEM
   Red × White × Charcoal · Clean & Professional
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --red:        #C41E3A;
  --red-dark:   #9B1828;
  --red-deeper: #7A1220;
  --red-glow:   rgba(196,30,58,0.18);
  --black:      #0C0C0C;
  --charcoal:   #161616;
  --gray-900:   #1A1A1A;
  --gray-800:   #242424;
  --gray-700:   #333333;
  --gray-600:   #4A4A4A;
  --gray-500:   #6B6B6B;
  --gray-400:   #8A8A8A;
  --gray-300:   #AAAAAA;
  --gray-200:   #CCCCCC;
  --gray-100:   #E8E8E8;
  --white:      #FAFAFA;
  --pure-white: #FFFFFF;
  --green:      #16A34A;

  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Bebas Neue', 'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.5);
  --shadow-red: 0 8px 32px rgba(196,30,58,0.35);

  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* --- Base Reset & Body --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--gray-200);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar-premium {
  background: rgba(12,12,12,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 68px;
  transition: var(--transition);
}

.navbar-premium.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.navbar-premium .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-premium .navbar-brand img {
  height: 34px;
  width: 34px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.navbar-premium .brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}

.navbar-premium .nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400) !important;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.navbar-premium .nav-link:hover {
  color: var(--white) !important;
  background: rgba(255,255,255,0.06);
}

.navbar-premium .nav-link.active {
  color: var(--white) !important;
}

.navbar-premium .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: var(--radius-sm) !important;
  padding: 6px 10px !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.6%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Promo Bar */
.promo-bar {
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1060;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--black);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0.0) 100%
  );
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-overlay {
    background: rgba(0,0,0,0.80);
  }
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,30,58,0.15);
  border: 1px solid rgba(196,30,58,0.4);
  color: #FF8A8A;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #FF6B6B;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline .accent {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
}

.hero-subtext {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.hero-stat:first-child { border-left: none; padding-left: 0; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  line-height: 1.3;
}

.hero-visual {
  position: relative;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 4/5;
  max-height: 620px;
}

.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-float-card {
  position: absolute;
  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.hero-float-card.card-delivery {
  bottom: 32px;
  left: -24px;
  min-width: 180px;
}

.hero-float-card.card-rating {
  top: 32px;
  right: -20px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 36px; height: 36px;
  background: var(--red-glow);
  border: 1px solid rgba(196,30,58,0.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 14px;
}

.trust-text-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  display: block;
}

.trust-text-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: block;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  height: 1px;
  width: 24px;
  background: var(--red);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--gray-400);
  max-width: 500px;
  line-height: 1.7;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(196,30,58,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(196,30,58,0.15);
}

.product-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--gray-800);
}

.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-700);
  font-size: 48px;
}

.product-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-card-category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--gray-300);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
}

.sold-out-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: flex; align-items: center; justify-content: center;
}

.sold-out-overlay span {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 6px 18px;
  border-radius: 4px;
}

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-unit {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
  margin-top: auto;
}

.product-price-old {
  font-size: 13px;
  color: var(--gray-600);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.product-price.discount {
  color: var(--red);
}

.stock-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-view-product {
  display: block;
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--gray-300);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 16px;
}

.btn-view-product:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-view-product.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary-red:hover {
  background: var(--red-dark);
  color: var(--white);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.25);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   FORM INPUTS
   ============================================ */
.field-group {
  margin-bottom: 20px;
}

.field-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: var(--gray-600);
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: var(--red);
  background: rgba(196,30,58,0.06);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.12);
}

.field-textarea { resize: vertical; min-height: 130px; }

/* ============================================
   PAGE HEADERS (Sub-pages)
   ============================================ */
.page-header {
  background: var(--gray-900);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 120px 0 56px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(196,30,58,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.page-header-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 16px;
}

.page-header-sub {
  font-size: 15px;
  color: var(--gray-400);
  max-width: 540px;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before {
  color: var(--gray-700) !important;
}

.breadcrumb-dark .breadcrumb-item a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

.breadcrumb-dark .breadcrumb-item a:hover { color: var(--white); }

.breadcrumb-dark .breadcrumb-item.active {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 32px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-link:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  color: var(--red);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin: 40px 0 28px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--gray-600);
}

/* ============================================
   FILTER SIDEBAR
   ============================================ */
.filter-sidebar {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 88px;
}

.filter-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.filter-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 2px;
}

.filter-link:hover {
  background: rgba(255,255,255,0.04);
  color: var(--white);
}

.filter-link.active {
  background: rgba(196,30,58,0.12);
  color: var(--red);
  border-left: 3px solid var(--red);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
}

.contact-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(196,30,58,0.12);
  border: 1px solid rgba(196,30,58,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 16px;
  flex-shrink: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}

.hours-row:last-child { border-bottom: none; }

.hours-row .day { color: var(--gray-400); }
.hours-row .time { color: var(--white); font-weight: 500; }
.hours-row.closed .time { color: var(--red); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(196,30,58,0.3);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ============================================
   MISC UTILITIES
   ============================================ */
.text-red      { color: var(--red) !important; }
.text-white-60 { color: rgba(255,255,255,0.6) !important; }
.text-white    { color: var(--white) !important; }
.text-gray-4   { color: var(--gray-400) !important; }
.text-gray-5   { color: var(--gray-500) !important; }
.text-success  { color: var(--green) !important; }

.bg-gray-900   { background-color: var(--gray-900) !important; }
.bg-gray-800   { background-color: var(--gray-800) !important; }
.bg-charcoal   { background-color: var(--charcoal) !important; }

.border-subtle { border: 1px solid rgba(255,255,255,0.06) !important; }
.divider       { border: none; border-top: 1px solid rgba(255,255,255,0.06); }

.badge-red {
  display: inline-block;
  background: rgba(196,30,58,0.15);
  color: #FF8A8A;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* Alert overrides */
.alert-success { background: rgba(22,163,74,0.12); border-color: rgba(22,163,74,0.25); color: #4ADE80; border-radius: var(--radius-sm); }
.alert-danger  { background: rgba(196,30,58,0.12); border-color: rgba(196,30,58,0.25); color: #FCA5A5; border-radius: var(--radius-sm); }

/* Pagination */
.pagination .page-link {
  background: var(--gray-800);
  border-color: rgba(255,255,255,0.08);
  color: var(--gray-400);
  border-radius: var(--radius-sm) !important;
  margin: 0 2px;
  font-size: 13px;
  font-weight: 500;
}
.pagination .page-item.active .page-link {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.pagination .page-link:hover {
  background: var(--gray-700);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .hero-section { min-height: auto; padding: 120px 0 80px; }
  .trust-item { padding: 12px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-item:last-child { border-bottom: none; }
}

@media (max-width: 767.98px) {
  .hero-headline { font-size: clamp(44px, 14vw, 80px); }
  .section-title { font-size: clamp(32px, 10vw, 56px); }
  .hero-float-card { display: none; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-600); }
