/* ==============================================================================
   Tulip Shipping Ltd - Standalone Production Stylesheet for cPanel Hosting
   Brand Primary: #0B377B (Royal Navy) | Accent: #E31B23 (Kenya Red)
   Responsive, modern glassmorphism, clean typography, and zero external build deps
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
  --primary: #0B377B;
  --primary-dark: #082C64;
  --primary-light: #1652A8;
  --primary-tint: rgba(11, 55, 123, 0.08);
  --accent: #E31B23;
  --accent-dark: #C9151C;
  --accent-tint: rgba(227, 27, 35, 0.08);
  --bg-slate: #f8fafc;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --card-bg: rgba(255, 255, 255, 0.95);
  --radius-lg: 1.25rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.5rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px -2px rgba(11, 55, 123, 0.08);
  --shadow-lg: 0 12px 32px -4px rgba(11, 55, 123, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-slate);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  letter-spacing: -0.02em;
  font-weight: 700;
}

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

button, input, select, textarea {
  font: inherit;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* TOP TICKER / UTILITY BAR */
.top-bar {
  background: var(--primary-dark);
  color: #e2e8f0;
  font-size: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.6rem;
  border-radius: 9999px;
  background: rgba(227, 27, 35, 0.2);
  color: #fca5a5;
  font-weight: 600;
  font-size: 0.6875rem;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(227, 27, 35, 0.4);
}

/* NAVIGATION */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand-text h1 {
  font-size: 1.35rem;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.brand-text .ltd {
  color: var(--accent);
}
.brand-subtitle {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}
.nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 0.85rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.25);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(11, 55, 123, 0.2);
}
.btn-navy:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: white;
  border-color: var(--border-color);
  color: var(--primary);
}
.btn-outline:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
}
@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* MOBILE DRAWER */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 100;
  backdrop-filter: blur(4px);
}
.mobile-drawer.open {
  display: flex;
}
.mobile-drawer-content {
  width: 82%;
  max-width: 320px;
  background: white;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav-list {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-nav-link {
  display: block;
  padding: 0.65rem 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  color: #334155;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--primary-tint);
  color: var(--primary);
}

/* HERO SECTION */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0B377B 0%, #082C64 60%, #041838 100%);
  color: white;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: 2.25rem;
  line-height: 1.15;
  color: white;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.25rem;
  }
}
.hero-title .highlight {
  color: #ff8589;
}
.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 580px;
  margin-bottom: 2rem;
}

/* HERO SEARCH BOX */
.hero-search-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  color: var(--text-dark);
}
.search-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.search-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.search-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 576px) {
  .search-input-group {
    flex-direction: row;
  }
}
.search-input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  background: #f8fafc;
}
.search-input:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}
.quick-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
}
.quick-pill-btn {
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.5rem;
  border-radius: 0.375rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  cursor: pointer;
  color: #334155;
  transition: all 0.15s;
}
.quick-pill-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* HERO STATS BAR */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 576px) {
  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: var(--radius-md);
}
.stat-number {
  font-size: 1.65rem;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  color: white;
}
.stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.2rem;
}

/* SECTION UTILS */
.section {
  padding: 4.5rem 0;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  background: var(--primary-tint);
  border: 1px solid rgba(11, 55, 123, 0.18);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}
.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* CARDS & GRIDS */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 0.5rem);
  margin-bottom: 1.25rem;
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-icon.red {
  background: var(--accent-tint);
  color: var(--accent);
}

/* PIPELINE STEPS */
.pipeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .pipeline-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pipeline-step {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
}
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 0.65rem;
  background: var(--primary);
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.step-number.red {
  background: var(--accent);
}

/* TRACKING TIMELINE */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--border-color);
  margin: 2rem 0;
}
.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}
.timeline-dot {
  position: absolute;
  left: -2.65rem;
  top: 0.2rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.timeline-item.completed .timeline-dot {
  background: #059669;
  border-color: #059669;
  color: white;
}
.timeline-item.active .timeline-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.3);
}

/* TABLES */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: white;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.8125rem;
}
.data-table th {
  background: #f8fafc;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}
.data-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}
.data-table tr:hover {
  background: #f8fafc;
}
.status-pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.status-green {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.status-blue {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}
.status-amber {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* CALCULATOR FORM & SUMMARY */
.calculator-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 992px) {
  .calculator-box {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  background: #f8fafc;
  font-size: 0.85rem;
  color: var(--text-dark);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}
.mode-toggle-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 576px) {
  .mode-toggle-group {
    grid-template-columns: repeat(4, 1fr);
  }
}
.mode-btn {
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--border-color);
  background: #f8fafc;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.mode-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(11, 55, 123, 0.2);
}

/* QUOTE SUMMARY CARD */
.quote-summary {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote-price-banner {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.quote-price-val {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  color: white;
}

/* FAQ ACCORDION */
.accordion {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: white;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.accordion-header {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
  transition: background 0.15s;
}
.accordion-header:hover {
  background: #f8fafc;
  color: var(--primary);
}
.accordion-body {
  display: none;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.8125rem;
  color: #475569;
  background: #fafafa;
  line-height: 1.6;
}
.accordion.active .accordion-body {
  display: block;
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.modal-overlay.open {
  display: flex;
}
.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* FOOTER */
.footer {
  background: var(--primary);
  color: #cbd5e1;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--primary-dark);
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}
.footer-brand h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.footer-heading {
  color: white;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.8125rem;
}
.footer-links a:hover {
  color: white;
  text-decoration: underline;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* CPANEL DOWNLOAD BANNER */
.cpanel-pill-badge {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ==============================================================================
   SERVICES FILTER & ENHANCED CARDS
   ============================================================================== */
.services-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.services-filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background: white;
  color: #475569;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.services-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.services-filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(11, 55, 123, 0.2);
}
.service-item-hidden {
  display: none !important;
}
.service-pill-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.service-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 0.35rem;
  background: #f1f5f9;
  color: #334155;
}
.service-pill.blue {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
.service-pill.green {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.service-pill.red {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
.service-features-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #475569;
}
.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.service-features-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #059669;
}

/* ==============================================================================
   PARTNERS LOGO SLIDER (CONTINUOUS MARQUEE)
   ============================================================================== */
.partners-section {
  padding: 2.75rem 0;
  background: white;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}
.partners-header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.partners-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  font-family: 'JetBrains Mono', monospace;
}
.partners-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.partners-marquee-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  animation: scrollMarquee 38s linear infinite;
}
.partners-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.partner-logo-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.partner-logo-item:hover {
  background: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.partner-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 0.5rem;
  background: white;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--primary);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.partner-info {
  display: flex;
  flex-direction: column;
}
.partner-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: #1e293b;
}
.partner-type {
  font-size: 0.7rem;
  color: #64748b;
  font-family: 'JetBrains Mono', monospace;
}

/* ==============================================================================
   TESTIMONIALS SLIDER SECTION
   ============================================================================== */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}
.testimonials-wrapper {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0.5rem 0 1.5rem;
}
.testimonials-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 1.5rem;
}
.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .testimonial-slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
@media (min-width: 1024px) {
  .testimonial-slide {
    flex: 0 0 calc(33.333% - 1rem);
  }
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 55, 123, 0.3);
}
.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3.5rem;
  line-height: 1;
  color: #f1f5f9;
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}
.testimonial-route-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-tint);
  border: 1px solid rgba(11, 55, 123, 0.15);
  padding: 0.2rem 0.55rem;
  border-radius: 0.35rem;
  margin-bottom: 0.85rem;
  width: fit-content;
}
.testimonial-quote {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #334155;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.testimonial-author-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(11, 55, 123, 0.25);
}
.testimonial-author-info {
  overflow: hidden;
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonial-title {
  font-size: 0.725rem;
  color: #64748b;
  line-height: 1.3;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: white;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.testimonial-nav-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.05);
}
.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.testimonial-dot.active {
  width: 24px;
  border-radius: 5px;
  background: var(--primary);
}
