/* Enhanced About Page Styling for CheapOTT */

:root {
  --about-primary: #ff4757;
  --about-primary-rgb: 255, 71, 87;
  --about-secondary: #1e90ff;
  --about-secondary-rgb: 30, 144, 255;
  --about-accent: #7d5fff;
  --about-accent-rgb: 125, 95, 255;
  --about-dark: #2f3542;
  --about-light: #f1f2f6;
  --about-success: #2ed573;
  --about-warning: #ffa502;
  --about-danger: #ff4757;
  --about-text: #333;
  --about-text-light: #666;
  --about-border: #ddd;
  --about-bg-light: #f8f9fa;
  --about-bg-white: #fff;
  --about-bg-dark: #1e2430;
  --about-shadow: rgba(0, 0, 0, 0.1);
  --about-gradient-1: linear-gradient(135deg, #ff4757, #ff6b81);
  --about-gradient-2: linear-gradient(135deg, #1e90ff, #70a1ff);
  --about-gradient-3: linear-gradient(135deg, #7d5fff, #5f27cd);
  --about-gradient-4: linear-gradient(135deg, #2ed573, #7bed9f);
  --about-gradient-5: linear-gradient(135deg, #ffa502, #ff6348);
  --about-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== Hero Section with Background Shapes ===== */
.about-hero {
  position: relative;
  background: var(--contact-bg-light);
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-hero h1 {
  font-size: 3.5rem;
  color: var(--contact-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero .highlight-text {
  color: var(--contact-primary);
}

.about-hero p {
  font-size: 1.2rem;
  color: var(--contact-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.about-shape {
  position: absolute;
  opacity: 0.1;
  border-radius: 50%;
}

.about-shape-1 {
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: var(--contact-primary);
  animation: float 8s ease-in-out infinite;
}

.about-shape-2 {
  top: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: var(--contact-secondary);
  animation: float 6s ease-in-out infinite;
}

.about-shape-3 {
  bottom: 10%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: var(--contact-accent);
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* ===== Global Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(30px);
  }
  to { 
    opacity: 1; 
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from { 
    opacity: 0; 
    transform: translateX(-30px);
  }
  to { 
    opacity: 1; 
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from { 
    opacity: 0; 
    transform: translateX(30px);
  }
  to { 
    opacity: 1; 
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes floatingBg {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  75% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  76% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--about-primary-rgb), 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(var(--about-primary-rgb), 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--about-primary-rgb), 0);
  }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* ===== Hero Section ===== */
.about-hero {
  position: relative;
  min-height: 60vh;
  background: var(--about-gradient-1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  z-index: 1;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.3"/></svg>');
  animation: floatingBg 20s linear infinite;
  z-index: -1;
}

.about-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.3s;
  background: linear-gradient(to right, #fff, #f1f2f6, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: fadeInUp 1s forwards 0.3s, shimmer 3s infinite 1.5s;
}

.about-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.6s;
}

.about-hero-btn {
  display: inline-block;
  background: white;
  color: var(--about-primary);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: var(--about-transition);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.9s;
  position: relative;
  overflow: hidden;
}

.about-hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  z-index: -1;
}

.about-hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.about-hero-btn:hover::before {
  left: 100%;
}

.about-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.about-hero-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 15s infinite;
}

.about-hero-shape:nth-child(1) {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.about-hero-shape:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 20%;
  animation-delay: 2s;
}

.about-hero-shape:nth-child(3) {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 15%;
  animation-delay: 4s;
}

.about-hero-shape:nth-child(4) {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 10%;
  animation-delay: 6s;
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 0.9rem;
  opacity: 0;
  animation: fadeIn 1s forwards 1.5s;
}

.scroll-indicator span {
  margin-bottom: 8px;
}

.scroll-indicator .mouse {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: scrollDown 2s infinite;
}

/* ===== Trust Metrics Section ===== */
.trust-metrics-section {
  background-color: var(--about-bg-white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.trust-metrics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(var(--about-primary-rgb), 0.03) 0%, rgba(var(--about-primary-rgb), 0) 50%),
                    radial-gradient(circle at 80% 70%, rgba(var(--about-secondary-rgb), 0.03) 0%, rgba(var(--about-secondary-rgb), 0) 50%);
  z-index: -1;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trust-metric {
  background: var(--about-bg-white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  transition: var(--about-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
}

.trust-metric:nth-child(1) {
  animation: fadeInUp 0.6s forwards 0.3s;
}

.trust-metric:nth-child(2) {
  animation: fadeInUp 0.6s forwards 0.6s;
}

.trust-metric:nth-child(3) {
  animation: fadeInUp 0.6s forwards 0.9s;
}

.trust-metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--about-gradient-1);
  z-index: 1;
}

.trust-metric:nth-child(2)::before {
  background: var(--about-gradient-2);
}

.trust-metric:nth-child(3)::before {
  background: var(--about-gradient-3);
}

.trust-metric:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.metric-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(var(--about-primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

.trust-metric:nth-child(2) .metric-icon {
  background: rgba(var(--about-secondary-rgb), 0.1);
  border-radius: 50%;
  box-sizing: border-box;
  min-width: 80px;
  min-height: 80px;
}

.trust-metric:nth-child(3) .metric-icon {
  background: rgba(var(--about-accent-rgb), 0.1);
  border-radius: 50%;
  box-sizing: border-box;
  min-width: 80px;
  min-height: 80px;
}

.metric-icon i {
  font-size: 2rem;
  color: var(--about-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.trust-metric:nth-child(2) .metric-icon i {
  color: var(--about-secondary);
}

.trust-metric:nth-child(3) .metric-icon i {
  color: var(--about-accent);
}

.metric-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid rgba(var(--about-primary-rgb), 0.2);
  animation: pulse 2s infinite;
  z-index: -1;
}

.trust-metric:nth-child(2) .metric-icon::after {
  border-color: rgba(var(--about-secondary-rgb), 0.2);
  border-radius: 50%;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
}

.trust-metric:nth-child(3) .metric-icon::after {
  border-color: rgba(var(--about-accent-rgb), 0.2);
  border-radius: 50%;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
}

.metric-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--about-text);
}

.metric-content p {
  color: var(--about-text-light);
  font-size: 1rem;
  margin: 0;
}

.metric-counter {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--about-gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-metric:nth-child(2) .metric-counter {
  background: var(--about-gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-metric:nth-child(3) .metric-counter {
  background: var(--about-gradient-3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Our Story Section ===== */
.about-section {
  padding: 6rem 0;
  background-color: var(--about-bg-light);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23ff4757" opacity="0.1"/></svg>');
  z-index: -1;
  opacity: 0.5;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: center;
}

.about-image {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s forwards 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-design {
  background: var(--about-gradient-1);
  position: relative;
}

.story-design::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.story-text-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background: radial-gradient(circle at center, rgba(255,71,87,0.8) 0%, rgba(255,71,87,0.9) 100%);
  overflow: hidden;
}

.story-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.story-particles::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 60% 10%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 5%);
  animation: particles-float 15s ease-in-out infinite alternate;
}

@keyframes particles-float {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(10deg) scale(1.1);
  }
}

.story-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  animation: glow-pulse 4s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes glow-pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.story-text-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  opacity: 0.7;
  animation: subtle-pulse 8s ease-in-out infinite alternate;
}

@keyframes subtle-pulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.story-title {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, #fff, #f1f1f1, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  animation: shimmer 3s infinite;
  z-index: 3;
}

.story-title span {
  color: transparent;
  background: linear-gradient(to right, #fff, #ffcccf, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s infinite 0.5s;
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.story-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, rgba(255,255,255,0.3), rgba(255,255,255,1), rgba(255,255,255,0.3));
  border-radius: 5px;
  animation: width-pulse 3s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes width-pulse {
  0%, 100% { width: 100px; }
  50% { width: 150px; }
}

.story-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  opacity: 0.9;
  animation: fadeInUp 1s forwards, float-subtle 4s ease-in-out infinite;
  z-index: 3;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

.story-subtitle::before,
.story-subtitle::after {
  content: '\2605';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  animation: star-twinkle 2s ease-in-out infinite alternate;
}

@keyframes star-twinkle {
  0% { opacity: 0.5; transform: translateY(-50%) scale(1); }
  100% { opacity: 1; transform: translateY(-50%) scale(1.3); }
}

.story-subtitle::before {
  left: -25px;
  animation-delay: 0.5s;
}

.story-subtitle::after {
  right: -25px;
  animation-delay: 0s;
}

.story-icon-container {
  position: relative;
  margin-top: 1.5rem;
  z-index: 3;
}

.story-icon {
  font-size: 3.5rem;
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.story-icon i {
  background: linear-gradient(to bottom right, #fff, #f1f1f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.3));
}

.story-icon-shadow {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  filter: blur(5px);
  animation: shadow-pulse 4s ease-in-out infinite;
}

@keyframes shadow-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.2; }
  50% { transform: translateX(-50%) scale(1.2); opacity: 0.3; }
}

.story-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

.story-decoration {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.decoration-line {
  height: 2px;
  width: 60px;
  background: linear-gradient(to var(--direction, right), rgba(255,255,255,0), rgba(255,255,255,0.8));
  position: relative;
}

.decoration-line.left {
  --direction: right;
  margin-right: 10px;
}

.decoration-line.right {
  --direction: left;
  margin-left: 10px;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.5); opacity: 1; }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

.about-text {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s forwards 0.6s;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--about-text);
  position: relative;
  padding-bottom: 1rem;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--about-gradient-1);
  border-radius: 2px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--about-text-light);
  margin-bottom: 1.5rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ===== Why Trust Us Section ===== */
.why-trust-us-section {
  padding: 6rem 0;
  background-color: var(--about-bg-white);
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
  font-size: 2.5rem;
  color: var(--about-text);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.3s;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--about-gradient-1);
  border-radius: 2px;
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trust-feature {
  background: var(--about-bg-white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  transition: var(--about-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
}

.trust-feature:nth-child(1) {
  animation: fadeInUp 0.6s forwards 0.3s;
}

.trust-feature:nth-child(2) {
  animation: fadeInUp 0.6s forwards 0.5s;
}

.trust-feature:nth-child(3) {
  animation: fadeInUp 0.6s forwards 0.7s;
}

.trust-feature:nth-child(4) {
  animation: fadeInUp 0.6s forwards 0.9s;
}

.trust-feature::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--about-gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 1;
}

.trust-feature:nth-child(2)::before {
  background: var(--about-gradient-2);
}

.trust-feature:nth-child(3)::before {
  background: var(--about-gradient-3);
}

.trust-feature:nth-child(4)::before {
  background: var(--about-gradient-4);
}

.trust-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.trust-feature:hover::before {
  transform: scaleX(1);
}

.trust-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(var(--about-primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: var(--about-transition);
}

.trust-feature:nth-child(2) .trust-icon {
  background: rgba(var(--about-secondary-rgb), 0.1);
}

.trust-feature:nth-child(3) .trust-icon {
  background: rgba(var(--about-accent-rgb), 0.1);
}

.trust-feature:nth-child(4) .trust-icon {
  background: rgba(var(--about-success-rgb), 0.1);
}

.trust-icon i {
  font-size: 2rem;
  color: var(--about-primary);
  transition: var(--about-transition);
}

.trust-feature:nth-child(2) .trust-icon i {
  color: var(--about-secondary);
}

.trust-feature:nth-child(3) .trust-icon i {
  color: var(--about-accent);
}

.trust-feature:nth-child(4) .trust-icon i {
  color: var(--about-success);
}

.trust-feature:hover .trust-icon {
  transform: rotateY(180deg);
}

.trust-feature h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--about-text);
}

.trust-feature p {
  color: var(--about-text-light);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* ===== Mission Section ===== */
.mission-section {
  padding: 6rem 0;
  background-color: var(--about-bg-light);
  position: relative;
  overflow: hidden;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mission-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.3s;
}

.mission-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--about-text);
  position: relative;
  padding-bottom: 1rem;
}

.mission-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--about-gradient-2);
  border-radius: 2px;
}

.mission-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--about-text-light);
  margin-bottom: 1.5rem;
}

.mission-values {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.6s;
}

.mission-values h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--about-text);
  position: relative;
  padding-bottom: 1rem;
}

.mission-values h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--about-gradient-3);
  border-radius: 2px;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.value-item {
  background: var(--about-bg-white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: var(--about-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-item i {
  font-size: 1.5rem;
  color: var(--about-primary);
  margin-bottom: 1rem;
  display: block;
}

.value-item:nth-child(2) i {
  color: var(--about-secondary);
}

.value-item:nth-child(3) i {
  color: var(--about-accent);
}

.value-item:nth-child(4) i {
  color: var(--about-success);
}

.value-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--about-text);
}

.value-item p {
  color: var(--about-text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--about-bg-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(var(--about-secondary-rgb), 0.03) 0%, rgba(var(--about-secondary-rgb), 0) 50%),
                    radial-gradient(circle at 80% 70%, rgba(var(--about-primary-rgb), 0.03) 0%, rgba(var(--about-primary-rgb), 0) 50%);
  z-index: -1;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.testimonial {
  opacity: 0;
  transform: scale(0.95);
  animation: fadeIn 0.8s forwards, scaleUp 0.8s forwards;
  animation-delay: calc(0.2s * var(--testimonial-index, 1));
}

.testimonial:nth-child(1) { --testimonial-index: 1; }
.testimonial:nth-child(2) { --testimonial-index: 2; }
.testimonial:nth-child(3) { --testimonial-index: 3; }
.testimonial:nth-child(4) { --testimonial-index: 4; }
.testimonial:nth-child(5) { --testimonial-index: 5; }

@keyframes scaleUp {
  from { transform: scale(0.95); }
  to { transform: scale(1); }
}

.testimonial-content {
  background: var(--about-bg-white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: var(--about-transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonial-content::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(var(--about-primary-rgb), 0.1);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: -1;
}

.testimonial-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  margin-bottom: 1rem;
  color: #ffa502;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--about-text-light);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author div {
  flex: 1;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin: 0 0 0.3rem;
  color: var(--about-text);
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--about-text-light);
}

/* ===== Team Section ===== */
.team-section {
  padding: 6rem 0;
  background-color: var(--about-bg-light);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><circle cx="15" cy="15" r="1" fill="%23ff4757" opacity="0.05"/></svg>');
  z-index: -1;
  opacity: 0.5;
}

.team-subtitle {
  text-align: center;
  max-width: 700px;
  margin: -1.5rem auto 3rem;
  color: var(--about-text-light);
  font-size: 1.1rem;
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.5s;
}

.highlight-text {
  color: var(--about-primary);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--about-gradient-1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.section-title:hover .highlight-text::after {
  transform: scaleX(1);
  transform-origin: left;
}

.team-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 3rem;
  overflow: hidden;
}

.team-members-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.team-members {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  transition: transform 0.5s ease;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--about-primary) transparent;
}

.team-member {
  flex: 0 0 calc(23% - 1rem);
  min-width: 230px;
  max-width: 280px;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(30px);
}

.team-member:nth-child(1) {
  animation: fadeInUp 0.6s forwards 0.3s;
}

.team-member:nth-child(2) {
  animation: fadeInUp 0.6s forwards 0.5s;
}

.team-member:nth-child(3) {
  animation: fadeInUp 0.6s forwards 0.7s;
}

.team-member:nth-child(4) {
  animation: fadeInUp 0.6s forwards 0.9s;
}

.team-member-card {
  position: relative;
  width: 100%;
  height: 450px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-member-card.flipped {
  transform: rotateY(180deg);
}

.team-member-front,
.team-member-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: var(--about-bg-white);
}

.team-member-back {
  transform: rotateY(180deg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-member-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.team-member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}

.team-member-content {
  padding: 1.5rem;
  text-align: center;
}

.team-member-content h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--about-text);
}

.team-member-content p {
  color: var(--about-text-light);
  font-size: 1rem;
  margin: 0 0 1.5rem;
  font-weight: 500;
}

.team-member-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.team-member-skills span {
  background: rgba(var(--about-primary-rgb), 0.1);
  color: var(--about-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--about-transition);
}

.team-member[data-role="Digital Marketer"] .team-member-skills span {
  background: rgba(var(--about-secondary-rgb), 0.1);
  color: var(--about-secondary);
}

.team-member[data-role="Client Relations"] .team-member-skills span {
  background: rgba(var(--about-accent-rgb), 0.1);
  color: var(--about-accent);
}

.team-member[data-role="Customer Support Manager"] .team-member-skills span {
  background: rgba(var(--about-success-rgb), 0.1);
  color: var(--about-success);
  border-radius: 50px;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.team-member-btn {
  background: var(--about-gradient-1);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--about-transition);
  box-shadow: 0 5px 15px rgba(var(--about-primary-rgb), 0.3);
}

.team-member[data-role="Digital Marketer"] .team-member-btn {
  background: var(--about-gradient-2);
  box-shadow: 0 5px 15px rgba(var(--about-secondary-rgb), 0.3);
}

.team-member[data-role="Client Relations"] .team-member-btn {
  background: var(--about-gradient-3);
  box-shadow: 0 5px 15px rgba(var(--about-accent-rgb), 0.3);
}

.team-member[data-role="Customer Support Manager"] .team-member-btn {
  background: var(--about-gradient-4);
  box-shadow: 0 5px 15px rgba(var(--about-success-rgb), 0.3);
}

.team-member-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(var(--about-primary-rgb), 0.4);
}

.team-member[data-role="Digital Marketer"] .team-member-btn:hover {
  box-shadow: 0 8px 20px rgba(var(--about-secondary-rgb), 0.4);
}

.team-member[data-role="Client Relations"] .team-member-btn:hover {
  box-shadow: 0 8px 20px rgba(var(--about-accent-rgb), 0.4);
}

.team-member[data-role="Customer Support Manager"] .team-member-btn:hover {
  box-shadow: 0 8px 20px rgba(var(--about-success-rgb), 0.4);
}

.team-member-bio {
  text-align: left;
}

.team-member-bio h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--about-text);
}

.team-member-quote {
  font-style: italic;
  color: var(--about-primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.4;
}

.team-member[data-role="Digital Marketer"] .team-member-quote {
  color: var(--about-secondary);
}

.team-member[data-role="Client Relations"] .team-member-quote {
  color: var(--about-accent);
}

.team-member[data-role="Customer Support Manager"] .team-member-quote {
  color: var(--about-success);
}

.team-member-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 1.5rem;
  font-family: Georgia, serif;
}

.team-member-bio p {
  color: var(--about-text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.team-member-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--about-primary);
  display: block;
  margin-bottom: 0.3rem;
}

.team-member[data-role="Digital Marketer"] .stat-value {
  color: var(--about-secondary);
}

.team-member[data-role="Client Relations"] .stat-value {
  color: var(--about-accent);
}

.team-member[data-role="Customer Support Manager"] .stat-value {
  color: var(--about-success);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--about-text-light);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.team-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--about-primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--about-primary);
  transition: var(--about-transition);
}

.team-member[data-role="Digital Marketer"] .team-social a {
  background: rgba(var(--about-secondary-rgb), 0.1);
  color: var(--about-secondary);
}

.team-member[data-role="Client Relations"] .team-social a {
  background: rgba(var(--about-accent-rgb), 0.1);
  color: var(--about-accent);
}

.team-member[data-role="Customer Support Manager"] .team-social a {
  background: rgba(var(--about-success-rgb), 0.1);
  color: var(--about-success);
}

.team-social a:hover {
  background: var(--about-primary);
  color: white;
  transform: translateY(-3px);
}

.team-member[data-role="Digital Marketer"] .team-social a:hover {
  background: var(--about-secondary);
}

.team-member[data-role="Client Relations"] .team-social a:hover {
  background: var(--about-accent);
}

.team-member[data-role="Customer Support Manager"] .team-social a:hover {
  background: var(--about-success);
}

/* Team Controls */
.team-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
  justify-content: space-between;
}

.team-filter, .team-search {
  flex: 1;
  min-width: 300px;
}

.team-filter h3, .team-search h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--about-text);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  background: var(--about-bg-white);
  border: 1px solid var(--about-border);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--about-transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--about-primary);
  color: white;
  border-color: var(--about-primary);
}

.search-container {
  display: flex;
  gap: 0.5rem;
}

#team-search-input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--about-border);
  border-radius: 50px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--about-transition);
}

#team-search-input:focus {
  border-color: var(--about-primary);
  box-shadow: 0 0 0 3px rgba(var(--about-primary-rgb), 0.1);
}

#team-search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--about-primary);
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--about-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

#team-search-btn:hover {
  background: var(--about-dark);
  transform: scale(1.05);
}

/* Team CTA */
.team-cta {
  background: var(--about-gradient-1);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  color: white;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(var(--about-primary-rgb), 0.2);
}

.team-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  z-index: 0;
  opacity: 0.5;
}

.team-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.team-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.team-cta-btn {
  display: inline-block;
  background: white;
  color: var(--about-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--about-transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.team-cta-btn i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.team-cta-btn:hover {
  background: var(--about-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.team-cta-btn:hover i {
  transform: translateX(5px);
}

/* About Spacer */
.about-spacer {
  height: 2rem;
}

/* ===== Interactive Elements ===== */
.about-interactive {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-interactive-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--about-gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 20px rgba(var(--about-primary-rgb), 0.3);
  cursor: pointer;
  transition: var(--about-transition);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards 1s;
}

.about-interactive-btn:nth-child(2) {
  background: var(--about-gradient-2);
  box-shadow: 0 10px 20px rgba(var(--about-secondary-rgb), 0.3);
  animation-delay: 1.2s;
}

.about-interactive-btn:nth-child(3) {
  background: var(--about-gradient-3);
  box-shadow: 0 10px 20px rgba(var(--about-accent-rgb), 0.3);
  animation-delay: 1.4s;
}

.about-interactive-btn i {
  font-size: 1.5rem;
}

.about-interactive-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(var(--about-primary-rgb), 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Pulse animation for confetti button */
.about-interactive-btn.pulse {
  animation: button-pulse 1s cubic-bezier(0.66, 0, 0, 1) 3;
}

@keyframes button-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--about-primary-rgb), 0.7);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(var(--about-primary-rgb), 0);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--about-primary-rgb), 0);
    transform: scale(1);
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
  .about-hero h1 {
    font-size: 3rem;
  }
  
  .about-hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .about-content,
  .mission-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    height: 300px;
    order: -1;
  }
  
  .values {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-hero p {
    font-size: 1rem;
  }
  
  .about-text h2,
  .mission-text h2,
  .mission-values h2,
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .trust-metrics,
  .trust-features,
  .testimonials {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
  
  .values {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-hero {
    padding: 3rem 1.5rem;
  }
  
  .about-hero h1 {
    font-size: 2.2rem;
  }
  
  .about-hero-btn {
    padding: 0.7rem 1.5rem;
  }
  
  .about-section,
  .trust-metrics-section,
  .why-trust-us-section,
  .mission-section,
  .testimonials-section,
  .team-section {
    padding: 4rem 0;
  }
  
  .about-text h2,
  .mission-text h2,
  .mission-values h2,
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-text p,
  .mission-text p {
    font-size: 1rem;
  }
  
  .about-interactive {
    bottom: 20px;
    right: 20px;
  }
  
  .about-interactive-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 2.5rem 1rem;
    min-height: 50vh;
  }
  
  .about-hero h1 {
    font-size: 1.8rem;
  }
  
  .about-hero p {
    font-size: 0.9rem;
  }
  
  .about-hero-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .trust-metrics,
  .trust-features,
  .testimonials,
  .team-members,
  .about-content,
  .mission-content {
    padding: 0 1rem;
  }
  
  .about-section,
  .trust-metrics-section,
  .why-trust-us-section,
  .mission-section,
  .testimonials-section,
  .team-section {
    padding: 3rem 0;
  }
  
  .about-text h2,
  .mission-text h2,
  .mission-values h2,
  .section-title {
    font-size: 1.5rem;
  }
  
  .metric-icon,
  .trust-icon {
    width: 60px;
    height: 60px;
  }
  
  .metric-icon i,
  .trust-icon i {
    font-size: 1.5rem;
  }
  
  .metric-content h3,
  .trust-feature h3 {
    font-size: 1.2rem;
  }
  
  .about-interactive {
    bottom: 15px;
    right: 15px;
  }
  
  .about-interactive-btn {
    width: 45px;
    height: 45px;
  }
  
  .about-interactive-btn i {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .about-hero-content p {
    font-size: 1rem;
  }
  
  .about-hero-btn {
    padding: 0.8rem 1.5rem;
  }
  
  .trust-metrics {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image,
  .about-text {
    width: 100%;
  }
  
  .about-image {
    height: 250px;
    margin-bottom: 2rem;
  }
  
  .about-interactive {
    bottom: 20px;
    right: 20px;
  }
  
  .interactive-btn {
    width: 45px;
    height: 45px;
  }
  
  .interactive-btn i {
    font-size: 1.2rem;
  }
  
  /* Team section responsive styles */
  .team-container {
    padding: 0 1rem;
  }
  
  .team-members {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
  }
  
  .team-member {
    flex: 0 0 80%;
    min-width: 260px;
    scroll-snap-align: start;
  }
  
  .team-member-card {
    height: 420px;
  }
  
  .team-member-image {
    height: 180px;
  }
  
  .team-member-content h3 {
    font-size: 1.3rem;
  }
  
  .team-member-skills {
    margin-bottom: 1rem;
  }
  
  .team-member-btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.9rem;
  }
  
  .team-controls {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .team-filter, .team-search {
    width: 100%;
    min-width: 100%;
  }
  
  .filter-buttons {
    justify-content: center;
  }
  
  .team-cta {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }
  
  .team-cta h3 {
    font-size: 1.7rem;
  }
  
  /* Add scroll indicator for mobile */
  .team-members-wrapper::after {
    content: '\2190 Scroll \2192';
    display: block;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--about-text-light);
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
  }
}

@media screen and (max-width: 480px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }
  
  /* Improved mobile styling for interactive buttons */
  .about-interactive {
    bottom: 70px;
    right: 15px;
  }
  
  .about-interactive-btn {
    width: 50px;
    height: 50px;
    margin-bottom: 0.8rem;
  }
  
  .about-interactive-btn i {
    font-size: 1.2rem;
  }
  
  /* Enhanced team members mobile styling */
  .team-members-wrapper {
    padding: 0;
  }
  
  .team-members {
    padding: 0.5rem;
    gap: 1rem;
    justify-content: flex-start;
    padding-bottom: 1.5rem;
  }
  
  .team-member {
    flex: 0 0 calc(80% - 1rem);
    min-width: 220px;
  }
  
  .team-subtitle {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
  
  .trust-metrics {
    grid-template-columns: 1fr;
  }
  
  .metric-counter {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-hero-shapes {
    display: none;
  }
  
  .about-hero-particles {
    opacity: 0.3;
  }
  
  .about-interactive {
    bottom: 15px;
    right: 15px;
  }
  
  .interactive-btn {
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }
  
  .interactive-btn i {
    font-size: 1rem;
  }
  
  /* Team section responsive styles for smaller screens */
  .team-members {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  
  .team-member {
    flex: 0 0 85%;
    min-width: 240px;
  }
  
  .team-member-card {
    height: 380px;
  }
  
  .team-member-image {
    height: 150px;
  }
  
  .team-member-content {
    padding: 0.8rem;
  }
  
  .team-member-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }
  
  .team-member-content p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }
  
  .team-member-skills span {
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
  }
  
  .team-member-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .team-member-back {
    padding: 1.2rem;
  }
  
  .team-member-bio h3 {
    font-size: 1.1rem;
  }
  
  .team-member-quote {
    font-size: 0.9rem;
  }
  
  .team-member-bio p {
    font-size: 0.8rem;
  }
  
  .stat-value {
    font-size: 1.2rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
  
  .team-social a {
    width: 32px;
    height: 32px;
  }
  
  .filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .team-cta {
    padding: 1.5rem 1rem;
  }
  
  .team-cta h3 {
    font-size: 1.5rem;
  }
  
  .team-cta p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .team-cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Make scroll indicator more visible on small screens */
  .team-members-wrapper::after {
    font-size: 0.8rem;
    padding: 0.8rem 0;
    font-weight: 500;
  }
}

/* ===== Dark Mode Support ===== */
body.dark-mode .about-bg-white {
  background-color: #1e1e1e;
}

body.dark-mode .about-bg-light {
  background-color: #121212;
}

body.dark-mode .about-section {
  background-color: #121212;
}

body.dark-mode .about-section::before {
  opacity: 0.2;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23ff6b81" opacity="0.15"/></svg>');
}

body.dark-mode .about-text {
  color: #f1f2f6;
  background-color: #1e1e1e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

body.dark-mode .about-text-light {
  color: #aaa;
}

body.dark-mode .trust-metric,
body.dark-mode .trust-feature,
body.dark-mode .testimonial-content,
body.dark-mode .team-member,
body.dark-mode .value-item {
  background: #1e1e1e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.dark-mode .section-title,
body.dark-mode .about-text h2,
body.dark-mode .mission-text h2,
body.dark-mode .mission-values h2,
body.dark-mode .trust-feature h3,
body.dark-mode .metric-content h3,
body.dark-mode .value-item h3,
body.dark-mode .team-member h3,
body.dark-mode .testimonial-author h4 {
  color: #f1f1f1;
}

body.dark-mode .about-text p,
body.dark-mode .mission-text p,
body.dark-mode .trust-feature p,
body.dark-mode .metric-content p,
body.dark-mode .value-item p,
body.dark-mode .testimonial-content p,
body.dark-mode .team-member p,
body.dark-mode .testimonial-author span {
  color: #a4b0be;
}

/* Dark mode for Our Story section */
body.dark-mode .story-design {
  background: linear-gradient(135deg, #2c3e50, #1e272e);
}

body.dark-mode .story-text-overlay {
  background: radial-gradient(circle at center, rgba(30, 39, 46, 0.8) 0%, rgba(30, 39, 46, 0.9) 100%);
}

body.dark-mode .story-text-overlay::before {
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

body.dark-mode .story-glow {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

body.dark-mode .story-title {
  background: linear-gradient(to right, #f1f2f6, #a4b0be, #f1f2f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

body.dark-mode .story-title span {
  background: linear-gradient(to right, #f1f2f6, #ff6b81, #f1f2f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

body.dark-mode .story-title::after {
  background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0.8), rgba(255,255,255,0.2));
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

body.dark-mode .story-subtitle {
  color: #f1f2f6;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

body.dark-mode .story-icon i {
  background: linear-gradient(to bottom right, #f1f2f6, #a4b0be);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

body.dark-mode .story-decoration .decoration-dot {
  background: #f1f2f6;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

body.dark-mode .decoration-line {
  background: linear-gradient(to var(--direction, right), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
}

/* Dark mode for contact hero elements used in about page */
body.dark-mode .contact-hero {
  background-color: #121212;
}

body.dark-mode .contact-hero-content h1,
body.dark-mode .contact-hero-content .highlight-text {
  color: #f1f2f6;
}

body.dark-mode .contact-hero-content p {
  color: #a4b0be;
}

body.dark-mode .contact-shape {
  opacity: 0.15;
}

body.dark-mode .contact-shape-1 {
  background: var(--about-primary);
}

body.dark-mode .contact-shape-2 {
  background: var(--about-secondary);
}

body.dark-mode .contact-shape-3 {
  background: var(--about-accent);
}

/* Dark mode for Our Mission and Our Values section */
body.dark-mode .mission-section {
  background-color: #121212;
}

body.dark-mode .mission-content {
  background-color: #1e1e1e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.dark-mode .mission-text h2,
body.dark-mode .mission-values h2 {
  color: #f1f2f6;
}

body.dark-mode .mission-text p,
body.dark-mode .mission-values p {
  color: #a4b0be;
}

body.dark-mode .value-item {
  background-color: #1e1e1e;
  border: 1px solid #2f3542;
}

body.dark-mode .value-item:hover {
  background-color: #2f3542;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

body.dark-mode .value-icon {
  color: var(--about-primary);
  background-color: rgba(255, 71, 87, 0.1);
}

/* Dark mode for Meet Our Dream Team section */
body.dark-mode .team-section {
  background-color: #121212;
}

body.dark-mode .team-subtitle {
  color: #a4b0be;
}

body.dark-mode .team-filter,
body.dark-mode .team-search {
  background-color: #1e1e1e;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

body.dark-mode .team-filter h3,
body.dark-mode .team-search h3 {
  color: #f1f2f6;
}

body.dark-mode .filter-btn {
  color: #a4b0be;
  background-color: #2f3542;
  border: 1px solid #3d4456;
}

body.dark-mode .filter-btn:hover {
  background-color: #3d4456;
  color: #f1f2f6;
}

body.dark-mode .filter-btn.active {
  background-color: var(--about-primary);
  color: #fff;
  border-color: var(--about-primary);
}

body.dark-mode #team-search-input {
  background-color: #2f3542;
  border: 1px solid #3d4456;
  color: #f1f2f6;
}

body.dark-mode #team-search-input::placeholder {
  color: #a4b0be;
}

body.dark-mode #team-search-btn {
  background-color: var(--about-primary);
  color: #fff;
}

body.dark-mode .team-member-card {
  background-color: #1e1e1e;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

body.dark-mode .team-member-content {
  background-color: #1e1e1e;
}

body.dark-mode .team-member-name {
  color: #f1f2f6;
}

body.dark-mode .team-member-role {
  color: var(--about-primary);
}

body.dark-mode .team-member-skills span {
  background-color: #2f3542;
  color: #a4b0be;
}

body.dark-mode .team-member-btn {
  background-color: var(--about-primary);
  color: #fff;
}

body.dark-mode .team-member-btn:hover {
  background-color: #ff6b81;
}

body.dark-mode .team-member-back {
  background-color: #1e1e1e;
}

body.dark-mode .team-member-bio h4 {
  color: #f1f2f6;
}

body.dark-mode .team-member-bio p,
body.dark-mode .team-member-quote {
  color: #a4b0be;
}

body.dark-mode .team-member-stat-value {
  color: #f1f2f6;
}

body.dark-mode .team-member-stat-label {
  color: #a4b0be;
}

body.dark-mode .team-social a {
  background-color: #2f3542;
  color: #f1f2f6;
}

body.dark-mode .team-social a:hover {
  background-color: var(--about-primary);
  color: #fff;
}

body.dark-mode .back-btn {
  background-color: #2f3542;
  color: #f1f2f6;
}

body.dark-mode .back-btn:hover {
  background-color: #3d4456;
}
