/* Founders Message Section - Modern Redesign */
.founders-message {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, 
    var(--black) 0%, 
    #0a0a0a 25%,
    #1a1a1a 50%,
    #0f0f0f 75%,
    var(--black) 100%
  );
  position: relative;
  overflow: hidden;
}

.founders-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(244, 208, 63, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(244, 208, 63, 0.06) 0%, transparent 50%),
    linear-gradient(45deg, transparent 45%, rgba(244, 208, 63, 0.02) 50%, transparent 55%);
  animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
  33% { opacity: 0.7; transform: scale(1.02) rotate(1deg); }
  66% { opacity: 0.5; transform: scale(0.98) rotate(-1deg); }
}

.founders-message .container {
  position: relative;
  z-index: 1;
}

.founders-message .section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  position: relative;
}

.founders-message .section-header::after {
  content: '';
  position: absolute;
  bottom: -var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.founders-message .section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, rgba(244, 208, 63, 0.1), rgba(244, 208, 63, 0.05));
  border: 1px solid rgba(244, 208, 63, 0.3);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founders-message .badge-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(244, 208, 63, 0.5));
}

.founders-message .section-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: -2px;
}

.founders-message .gradient-text {
  background: linear-gradient(135deg, 
    var(--gold) 0%, 
    #f4d03f 25%,
    #ffd700 50%,
    var(--white) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(244, 208, 63, 0.3));
}

/* Quotes Slider - Side-by-Side Layout */
.quotes-slider {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.quotes-container {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.quote-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.quote-content {
  display: grid;
  grid-template-columns: 20% 80%;
  gap: var(--space-2xl);
  background: linear-gradient(135deg, 
    rgba(26, 26, 26, 0.95) 0%, 
    rgba(40, 40, 40, 0.9) 100%
  );
  backdrop-filter: blur(30px);
  border: 1px solid rgba(244, 208, 63, 0.15);
  border-radius: 32px;
  padding: var(--space-3xl);
  position: relative;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(244, 208, 63, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  align-items: center;
}

.quote-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(244, 208, 63, 0.6) 30%, 
    var(--gold) 50%,
    rgba(244, 208, 63, 0.6) 70%,
    transparent 100%
  );
}

/* Left Side - Founder Image */
.founder-image-container {
  position: relative;
  height: 100%;
  min-height: 300px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(244, 208, 63, 0.2);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(244, 208, 63, 0.1);
}

.founder-large-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  position: relative;
}

.founder-large-avatar:not(img) {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-gray) 100%);
  font-size: 4rem;
  color: var(--gold);
}

.founder-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.95));
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  color: white;
}

.founder-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.founder-title {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Right Side - Quote Content */
.quote-text-container {
  position: relative;
  padding-left: var(--space-xl);
}

.quote-text-container::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xl);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.quote-attribution {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  opacity: 0.8;
}

.quote-attribution::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.attribution-text {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-style: normal;
}

/* Remove old author styles as they're now integrated into left side */

/* Slider Controls - Slick Design */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.slider-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(40, 40, 40, 0.8) 0%, 
    rgba(26, 26, 26, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 208, 63, 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.slider-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(244, 208, 63, 0.2) 0%, transparent 70%);
  transition: transform 0.3s ease;
}

.slider-btn:hover {
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(244, 208, 63, 0.2);
}

.slider-btn:hover::before {
  transform: translate(-50%, -50%) scale(2);
}

.slider-btn:active {
  transform: scale(1);
}

.slider-dots {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(244, 208, 63, 0.3);
  transition: transform 0.3s ease;
}

.dot.active {
  width: 32px;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(244, 208, 63, 0.4);
}

.dot:hover:not(.active) {
  background: rgba(244, 208, 63, 0.5);
  border-color: rgba(244, 208, 63, 0.5);
}

.dot:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Auto-play Progress Bar */
.auto-play-progress {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--medium-gray);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0;
  transition: width 5s linear;
}

.quote-slide.active .progress-bar {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .quote-content {
    grid-template-columns: 30% 70%;
    gap: var(--space-xl);
  }
  
  .founder-image-container {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .founders-message {
    padding: var(--space-2xl) 0;
  }
  
  .founders-message .section-title {
    font-size: 2rem;
    letter-spacing: -1px;
  }
  
  .founders-message .section-header {
    margin-bottom: var(--space-2xl);
  }
  
  .quotes-container {
    min-height: 500px;
    padding: 0 var(--space-sm);
  }
  
  .quote-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-lg);
    border-radius: 20px;
    gap: var(--space-lg);
    max-width: 100%;
    margin: 0 auto;
  }
  
  .founder-image-container {
    order: 1;
    min-height: 220px;
    max-width: 200px;
    margin: 0 auto;
    border-radius: 16px;
  }
  
  .quote-text-container {
    order: 2;
    padding-left: 0;
    text-align: center;
  }
  
  .quote-text {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: var(--space-md);
  }
  
  .quote-text-container::before {
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    top: -15px;
  }
  
  .quote-attribution {
    justify-content: center;
    margin-top: var(--space-sm);
  }
  
  .slider-controls {
    margin-top: var(--space-xl);
    gap: var(--space-lg);
  }
  
  .slider-btn {
    width: 44px;
    height: 44px;
  }
  
  .slider-dots {
    padding: var(--space-sm) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .founders-message {
    padding: var(--space-xl) 0;
  }
  
  .founders-message .section-title {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
  }
  
  .founders-message .section-header {
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-sm);
  }
  
  .quotes-container {
    min-height: 450px;
    padding: 0 var(--space-xs);
  }
  
  .quote-content {
    padding: var(--space-md);
    border-radius: 16px;
    gap: var(--space-md);
    margin: 0 var(--space-xs);
  }
  
  .founder-image-container {
    min-height: 180px;
    max-width: 160px;
    margin: 0 auto;
    border-radius: 12px;
  }
  
  .founder-name {
    font-size: 1rem;
  }
  
  .founder-title {
    font-size: 0.7rem;
    padding: 2px 8px;
  }
  
  .quote-text {
    font-size: 1rem;
    padding-left: 0;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
  }
  
  .quote-text-container {
    padding: 0 var(--space-sm);
  }
  
  .quote-text-container::before {
    font-size: 4rem;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .quote-attribution {
    justify-content: center;
    margin-top: var(--space-xs);
  }
  
  .attribution-text {
    font-size: 0.8rem;
  }
  
  .slider-controls {
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: 0 var(--space-sm);
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .slider-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .slider-dots {
    padding: var(--space-xs) var(--space-md);
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .dot.active {
    width: 24px;
  }
}

/* Extra Small Screens */
@media (max-width: 360px) {
  .founders-message .section-title {
    font-size: 1.5rem;
  }
  
  .quote-content {
    margin: 0;
    padding: var(--space-sm);
  }
  
  .founder-image-container {
    min-height: 150px;
    max-width: 140px;
  }
  
  .quote-text {
    font-size: 0.9rem;
  }
  
  .quote-text-container {
    padding: 0;
  }
  
  .slider-controls {
    padding: 0;
  }
  
  .slider-btn {
    width: 36px;
    height: 36px;
  }
  
  .slider-btn svg {
    width: 16px;
    height: 16px;
  }
}