/* ========================================================================
   SEED B2B MASTER STYLESHEET - EXTENDED
   Reusable components and styles for all B2B service pages
   Now includes multiple component variants for flexibility
   ======================================================================== */

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== COLOR VARIABLES ========== */
:root {
  /* SEED Brand Colors */
  --seed-primary: #0097b2;
  --seed-secondary: #ff914d;
  --seed-accent: #ff5757;
  --seed-sage: #ff914d;
  --seed-primary-gradient: linear-gradient(
    225deg,
    #e1f7fa 0%,
    #f0f2f5 50%,
    #bde9f1 100%
  );

  /* Neutral Palette */
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;

  /* Spacing System */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 5rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--neutral-900);
  letter-spacing: -0.01em;
}

.seed-b2b-h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
}

.seed-b2b-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.seed-b2b-h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
}

.seed-b2b-h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.4;
}

.seed-b2b-body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--neutral-600);
}

.seed-b2b-body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-600);
}

.seed-b2b-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-500);
}

.seed-b2b-section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
  text-align: center;
}

.seed-b2b-section-subtitle {
  font-size: 0.875rem;
  color: var(--neutral-600);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1.25rem;
  line-height: 1.5;
}

/* ========== HERO SECTION - VARIANT 1: STANDARD ========== */
.seed-b2b-hero {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
}

.seed-b2b-hero-image-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}

.seed-b2b-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 var(--radius-xl);
}

/* Hero Geometric Decorations */
.seed-b2b-hero-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Blue Circle Decoration */
.seed-b2b-hero-blue-circle {
  width: 300px;
  height: 300px;
  background: var(--seed-primary);
  border-radius: 50%;
  opacity: 0.15;
  top: -50px;
  right: 10%;
}

/* Orange Circle Decoration */
.seed-b2b-hero-orange-circle {
  width: 250px;
  height: 250px;
  background: var(--seed-secondary);
  border-radius: 50%;
  opacity: 0.12;
  bottom: -80px;
  right: 15%;
}

/* Triangle Decoration */
.seed-b2b-hero-triangle {
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 200px solid rgba(0, 151, 178, 0.1);
  top: 100px;
  right: 25%;
  transform: rotate(15deg);
}

/* Small Accent Circle */
.seed-b2b-hero-accent-circle {
  width: 150px;
  height: 150px;
  background: var(--seed-accent);
  border-radius: 50%;
  opacity: 0.08;
  top: 50%;
  right: 5%;
}

.seed-b2b-hero-content {
  position: relative;
  z-index: 1;
  padding: var(--spacing-3xl) 0;
}

.seed-b2b-hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-xl);
}

.seed-b2b-hero-logo {
  width: 100%;
  max-width: 300px;
  margin-bottom: var(--spacing-md);
}

.seed-b2b-hero-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--neutral-700);
  margin-bottom: var(--spacing-lg);
}

.seed-b2b-hero-cta {
  display: inline-block;
  background: var(--seed-primary);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
}

.seed-b2b-hero-cta:hover {
  background: #007a91;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 151, 178, 0.3);
  color: white;
}

/* ========== HERO SECTION - VARIANT 2: BSF STYLE (CURVED IMAGE) ========== */
.seed-b2b-hero-bsf {
  position: relative;
  height: 120vh;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.seed-b2b-hero-bsf-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.seed-b2b-hero-bsf-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.seed-b2b-hero-bsf-image {
  width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: 50% 50% 0 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* BSF Hero Animated Decorations */
.seed-b2b-hero-bsf-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: seed-b2b-hero-float 20s ease-in-out infinite;
}

.seed-b2b-hero-bsf-circle-1 {
  width: 400px;
  height: 400px;
  background: var(--seed-primary);
  top: -100px;
  left: -100px;
}

.seed-b2b-hero-bsf-circle-2 {
  width: 300px;
  height: 300px;
  background: var(--seed-secondary);
  bottom: -50px;
  right: 20%;
  animation-delay: 2s;
}

@keyframes seed-b2b-hero-float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-30px) translateX(20px);
  }
  50% {
    transform: translateY(-15px) translateX(-20px);
  }
  75% {
    transform: translateY(-40px) translateX(10px);
  }
}

.seed-b2b-hero-bsf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 151, 178, 0.1) 0%,
    rgba(255, 145, 77, 0.1) 100%
  );
  border: 1px solid rgba(0, 151, 178, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--seed-primary);
  margin-bottom: 1rem;
}

.seed-b2b-hero-bsf-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.seed-b2b-hero-bsf-title-gradient {
  background: linear-gradient(
    135deg,
    var(--seed-primary) 0%,
    var(--seed-secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seed-b2b-hero-bsf::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -25%;
  width: 50%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 151, 178, 0.08) 0%,
    transparent 70%
  );
  transform: rotate(-15deg);
  z-index: 0;
}

.seed-b2b-hero-bsf::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -25%;
  width: 50%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 145, 77, 0.06) 0%,
    transparent 70%
  );
  transform: rotate(15deg);
  z-index: 0;
}

/* ========== CLIENTS CAROUSEL - IN HERO ========== */
.seed-b2b-clients-in-hero {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.seed-b2b-clients-in-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.seed-b2b-clients-in-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* ========== CLIENTS SECTION ========== */
.seed-b2b-clients-section {
  padding: var(--spacing-xl) 0;
}

.seed-b2b-clients-carousel {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-lg) 0;
}

.seed-b2b-clients-track {
  display: flex;
  gap: var(--spacing-xl);
  animation: seed-b2b-scroll 30s linear infinite;
}

.seed-b2b-clients-track:hover {
  animation-play-state: paused;
}

.seed-b2b-client-logo {
  flex: 0 0 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.seed-b2b-client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition-base);
}

.seed-b2b-client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes seed-b2b-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========== SECTION LAYOUTS ========== */
.seed-b2b-section {
  padding: var(--spacing-3xl) 0;
}

.seed-b2b-section-sm {
  padding: var(--spacing-xl) 0;
}

.seed-b2b-section-lg {
  padding: calc(var(--spacing-3xl) * 1.5) 0;
}

/* ========== FEATURE CARDS - VARIANT 1: STANDARD ========== */
.seed-b2b-feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
}

.seed-b2b-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.seed-b2b-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--seed-primary),
    var(--seed-secondary)
  );
  border-radius: var(--radius-md);
}

.seed-b2b-feature-icon img {
  max-width: 60%;
  max-height: 60%;
}

.seed-b2b-feature-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.seed-b2b-feature-text {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.6;
  text-align: center;
}

/* ========== FEATURE CARDS - VARIANT 2: ACCENT BAR ========== */
.seed-b2b-feature-card-accent {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--neutral-200);
  transition: var(--transition-base);
  overflow: hidden;
  height: 100%;
}

.seed-b2b-feature-card-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--seed-primary),
    var(--seed-secondary)
  );
  transition: height 0.3s ease;
}

.seed-b2b-feature-card-accent:hover {
  border-color: var(--seed-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.seed-b2b-feature-card-accent:hover::before {
  height: 100%;
}

.seed-b2b-feature-icon-accent {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 151, 178, 0.1),
    rgba(255, 145, 77, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-base);
}

.seed-b2b-feature-card-accent:hover .seed-b2b-feature-icon-accent {
  background: linear-gradient(
    135deg,
    var(--seed-primary),
    var(--seed-secondary)
  );
  transform: rotate(5deg) scale(1.1);
}

.seed-b2b-feature-icon-accent img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: var(--transition-base);
}

.seed-b2b-feature-card-accent:hover .seed-b2b-feature-icon-accent img {
  filter: brightness(0) invert(1);
}

.seed-b2b-feature-title-accent {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 1rem;
  text-align: left;
}

.seed-b2b-feature-text-accent {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--neutral-600);
  text-align: left;
}

/* ========== COLORED FEATURE CARDS (BSF Style) ========== */
.seed-b2b-colored-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition-base);
}

.seed-b2b-colored-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.seed-b2b-colored-card-header {
  padding: var(--spacing-lg);
  text-align: center;
}

.seed-b2b-colored-card-title {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: white;
}

.seed-b2b-colored-card-divider {
  height: 2px;
  background: white;
  margin: 0;
}

.seed-b2b-colored-card-body {
  background: white;
  padding: var(--spacing-lg);
  border: 2px solid #eeeeee;
  border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.seed-b2b-colored-card-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.seed-b2b-colored-card-feature:last-child {
  margin-bottom: 0;
}

.seed-b2b-colored-card-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--neutral-800);
}

.seed-b2b-colored-card-text {
  font-size: 0.875rem;
  color: var(--neutral-700);
  line-height: 1.5;
}

/* Color variants */
.seed-b2b-card-orange {
  background: #e98039;
}
.seed-b2b-card-teal {
  background: #0d8097;
}
.seed-b2b-card-coral {
  background: #ff6b6b;
}
.seed-b2b-card-purple {
  background: #7b68ee;
}

/* ========== BSF MEGA FEATURE CARDS ========== */
.seed-b2b-mega-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
}

.seed-b2b-mega-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.seed-b2b-mega-header {
  padding: 1.5rem 1.25rem 1rem;
  position: relative;
  overflow: hidden;
}

.seed-b2b-mega-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.seed-b2b-mega-header-orange {
  background: linear-gradient(135deg, #e98039 0%, #d97329 100%);
  color: white;
}

.seed-b2b-mega-header-teal {
  background: linear-gradient(135deg, #0d8097 0%, #0a6b7e 100%);
  color: white;
}

.seed-b2b-mega-title {
  font-size: 1.375rem;
  color: white;
  margin-bottom: 0.5rem;
}

.seed-b2b-mega-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.seed-b2b-mega-list {
  padding: 1.25rem;
}

.seed-b2b-mega-list-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.625rem;
  background: var(--neutral-50);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: var(--transition-base);
  align-items: flex-start;
}

.seed-b2b-mega-list-item:last-child {
  margin-bottom: 0;
}

.seed-b2b-mega-list-item:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}

.seed-b2b-mega-check-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--seed-primary), #00b4d8);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seed-b2b-mega-check-icon i {
  color: white;
  font-size: 0.75rem;
}

.seed-b2b-mega-list-text {
  color: var(--neutral-700);
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* ========== TESTIMONIALS - VARIANT 1: STANDARD CAROUSEL ========== */
.seed-b2b-testimonials-section {
  background: var(--neutral-100);
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
}

.seed-b2b-testimonials-container {
  position: relative;
  padding: var(--spacing-lg) 0;
}

.seed-b2b-testimonials-track {
  display: flex;
  gap: var(--spacing-lg);
  animation: seed-b2b-testimonial-scroll 60s linear infinite;
}

.seed-b2b-testimonials-track:hover {
  animation-play-state: paused;
}

.seed-b2b-testimonial-card {
  flex: 0 0 500px;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.seed-b2b-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.seed-b2b-testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.seed-b2b-testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--neutral-200);
  flex-shrink: 0;
}

.seed-b2b-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seed-b2b-testimonial-info {
  flex: 1;
}

.seed-b2b-testimonial-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.25rem;
}

.seed-b2b-testimonial-title {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-bottom: 0.125rem;
}

.seed-b2b-testimonial-university {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--seed-primary);
}

.seed-b2b-testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-700);
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

.seed-b2b-testimonial-logo {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--neutral-200);
}

.seed-b2b-testimonial-logo img {
  max-height: 60px;
  max-width: 180px;
  opacity: 0.8;
}

@keyframes seed-b2b-testimonial-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-520px * 6));
  }
}

/* ========== TESTIMONIALS - VARIANT 2: COMPACT BSF STYLE ========== */
.seed-b2b-testimonials-compact {
  width: 100%;
  overflow: hidden;
}

.seed-b2b-testimonials-compact-track {
  display: flex;
  gap: 1.5rem;
  animation: seed-b2b-testimonial-compact-scroll 25s linear infinite;
}

.seed-b2b-testimonial-compact-card {
  max-width: 320px;
  min-width: 320px;
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  flex-shrink: 0;
}

.seed-b2b-testimonial-compact-card:hover {
  transform: translateY(-4px);
}

.seed-b2b-testimonial-compact-logo {
  text-align: center;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--neutral-200);
}

.seed-b2b-testimonial-compact-logo img {
  max-height: 80px;
  max-width: 180px;
  object-fit: contain;
}

.seed-b2b-testimonial-compact-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: center;
}

.seed-b2b-testimonial-compact-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--seed-primary);
  flex-shrink: 0;
}

.seed-b2b-testimonial-compact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seed-b2b-testimonial-compact-info h5 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.seed-b2b-testimonial-compact-info p {
  font-size: 0.875rem;
  color: var(--seed-primary);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}

.seed-b2b-testimonial-compact-quote {
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.6;
}

@keyframes seed-b2b-testimonial-compact-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-150%);
  }
}

/* ========== TOUR CARDS (BSF Style) ========== */
.seed-b2b-tour-tabs {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.seed-b2b-tour-tab-btn {
  padding: var(--spacing-md) var(--spacing-xl);
  border: 2px solid var(--neutral-300);
  background: white;
  color: var(--neutral-700);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.seed-b2b-tour-tab-btn:hover {
  border-color: var(--seed-primary);
  color: var(--seed-primary);
}

.seed-b2b-tour-tab-btn.active {
  background: var(--seed-primary);
  border-color: var(--seed-primary);
  color: white;
}

.seed-b2b-tour-content-wrapper {
  display: none;
}

.seed-b2b-tour-content-wrapper.active {
  display: block;
}

.seed-b2b-tour-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 100%;
}

.seed-b2b-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.seed-b2b-tour-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.seed-b2b-tour-content {
  padding: var(--spacing-lg);
}

.seed-b2b-tour-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.seed-b2b-tour-description {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.seed-b2b-tour-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  font-size: 0.875rem;
  color: var(--neutral-700);
}

.seed-b2b-tour-detail-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

/* ========== TOUR CITY CARDS (IMPROVED) ========== */
.seed-b2b-tour-city-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border: 1px solid var(--neutral-200);
  height: 100%;
}

.seed-b2b-tour-city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--seed-primary);
}

.seed-b2b-tour-city-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: var(--neutral-100);
}

.seed-b2b-tour-city-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.seed-b2b-tour-city-card:hover .seed-b2b-tour-city-image {
  transform: scale(1.05);
}

.seed-b2b-tour-city-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--seed-primary);
}

.seed-b2b-tour-city-content {
  padding: 1.5rem;
}

.seed-b2b-tour-city-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.seed-b2b-tour-city-description {
  font-size: 0.875rem;
  color: var(--neutral-700);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.seed-b2b-tour-city-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-200);
  font-size: 0.875rem;
  color: var(--neutral-700);
}

.seed-b2b-tour-city-stat i {
  color: var(--seed-secondary);
  margin-right: 0.5rem;
}

/* ========== BUTTONS ========== */
.seed-b2b-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.seed-b2b-btn-primary {
  background: var(--seed-primary);
  color: white;
}

.seed-b2b-btn-primary:hover {
  background: #007a91;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 151, 178, 0.3);
  color: white;
}

.seed-b2b-btn-secondary {
  background: var(--seed-secondary);
  color: white;
}

.seed-b2b-btn-secondary:hover {
  background: #e6813a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 145, 77, 0.3);
  color: white;
}

.seed-b2b-btn-outline {
  background: transparent;
  border: 2px solid var(--seed-primary);
  color: var(--seed-primary);
}

.seed-b2b-btn-outline:hover {
  background: var(--seed-primary);
  color: white;
}

.seed-b2b-btn-gradient {
  background: linear-gradient(135deg, var(--seed-primary), #00b4d8);
  color: white;
}

.seed-b2b-btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 151, 178, 0.3);
  color: white;
}

/* ========== STATS/COUNTERS ========== */
.seed-b2b-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  text-align: center;
}

.seed-b2b-stat-item {
  padding: var(--spacing-lg);
}

.seed-b2b-stat-value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--seed-primary),
    var(--seed-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
}

.seed-b2b-stat-label {
  font-size: 1rem;
  color: var(--neutral-700);
  font-weight: 500;
}

/* ========== UTILITIES ========== */
.seed-b2b-text-center {
  text-align: center;
}

.seed-b2b-text-gradient {
  background: linear-gradient(
    135deg,
    var(--seed-primary),
    var(--seed-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seed-b2b-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.seed-b2b-divider {
  height: 1px;
  background: var(--neutral-200);
  margin: var(--spacing-xl) 0;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 991px) {
  .seed-b2b-hero-image-container {
    display: none;
  }

  .seed-b2b-hero-decoration {
    display: none;
  }

  .seed-b2b-hero-content {
    padding: var(--spacing-xl) 0;
  }

  .seed-b2b-section {
    padding: var(--spacing-xl) 0;
  }

  .seed-b2b-testimonial-card {
    flex: 0 0 400px;
  }

  /* BSF Hero responsive */
  .seed-b2b-hero-bsf {
    height: auto;
    min-height: 100vh;
  }

  .seed-b2b-hero-bsf-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .seed-b2b-hero-bsf-image {
    width: 350px;
    height: 350px;
  }

  .seed-b2b-hero-bsf-decoration {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
    --spacing-3xl: 3rem;
  }

  .seed-b2b-hero {
    min-height: auto;
  }

  .seed-b2b-hero-card {
    padding: var(--spacing-md);
  }

  .seed-b2b-section {
    padding: var(--spacing-lg) 0;
  }

  .seed-b2b-testimonial-card {
    flex: 0 0 320px;
  }

  .seed-b2b-client-logo {
    flex: 0 0 150px;
    height: 80px;
  }

  .seed-b2b-colored-card-header,
  .seed-b2b-colored-card-body {
    padding: var(--spacing-md);
  }

  .seed-b2b-tour-tabs {
    gap: var(--spacing-sm);
  }

  .seed-b2b-tour-tab-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.875rem;
  }

  .seed-b2b-stats-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .seed-b2b-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .seed-b2b-hero-bsf-image {
    width: 280px;
    height: 280px;
  }

  .seed-b2b-testimonial-compact-card {
    min-width: 280px;
  }
}

@media (max-width: 575px) {
  .seed-b2b-testimonial-header {
    flex-direction: column;
    text-align: center;
  }

  .seed-b2b-testimonial-card {
    flex: 0 0 280px;
    padding: var(--spacing-md);
  }

  .seed-b2b-feature-card {
    padding: var(--spacing-md);
  }
}

/* ========== ANIMATIONS ========== */
@keyframes seed-b2b-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes seed-b2b-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.seed-b2b-animate-fadeIn {
  animation: seed-b2b-fadeIn 0.6s ease-out;
}

.seed-b2b-animate-fadeInUp {
  animation: seed-b2b-fadeInUp 0.8s ease-out;
}

/* ========== PRINT STYLES ========== */
@media print {
  .seed-b2b-hero {
    min-height: auto;
  }

  .seed-b2b-clients-track,
  .seed-b2b-testimonials-track {
    animation: none !important;
  }
}
