/*-----------------------------------*\
  #ABOUT PAGE STYLES
\*-----------------------------------*/

:root {
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  --gradient-secondary: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
  --gradient-accent: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 100%);
  --gradient-background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  --shadow-primary: 0 10px 30px rgba(99, 102, 241, 0.15);
  --shadow-hover: 0 20px 40px rgba(99, 102, 241, 0.25);
  --shadow-card: 0 8px 32px rgba(73, 95, 239, 0.12);
  --shadow-card-hover: 0 16px 48px rgba(73, 95, 239, 0.2);
}

body {
  background: var(--bg-lavender-blush);
}

/* Hero Section - Matching services page */
.hero {
  position: relative;
  padding: 140px 0 80px 0;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: slideUp 1s ease-out;
}

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

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  color: var(--text-majorelle-blue);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-subtitle img {
  animation: rotate 3s linear infinite;
}

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

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(99, 102, 241, 0.1);
  line-height: 1.2;
}

.hero-text {
  font-size: 1.9rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: var(--text-gunmetal);
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-majorelle-blue);
  display: block;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.4rem;
  color: var(--text-granite-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-banner {
  animation: fadeInRight 1s ease-out 0.5s both;
}

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

.hero-banner img {
  border-radius: 20px;
  box-shadow: var(--shadow-card-hover);
  transition: transform 0.3s ease;
}

.hero-banner:hover img {
  transform: scale(1.02);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--text-granite-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Our Journey Section - Matching services process timeline */
.about-story {
  padding: 100px 0;
  background: linear-gradient(135deg, #e3f0ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="process-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%233c5ecb" opacity="0.04"/></pattern></defs><rect width="100%" height="100%" fill="url(%23process-dots)"/></svg>');
  pointer-events: none;
}

.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  border-radius: 4px;
  box-shadow: var(--shadow-primary);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-primary);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  position: relative;
}

.process-step:hover .step-number {
  transform: scale(1.2);
  box-shadow: var(--shadow-hover);
}

.step-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  margin: 0 40px;
  flex: 1;
  max-width: 400px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.process-step:hover .step-content {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(99, 102, 241, 0.2);
}

.step-content h3 {
  font-size: 2.2rem;
  color: var(--text-majorelle-blue);
  margin-bottom: 12px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content p {
  font-size: 1.6rem;
  color: var(--text-granite-gray);
  line-height: 1.6;
}

/* Mission & Values Section */
.about-mission {
  padding: 100px 0;
  background: var(--bg-white);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.mission-main {
  animation: slideUp 1s ease-out;
}

.mission-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-majorelle-blue);
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-description {
  font-size: 1.8rem;
  color: var(--text-granite-gray);
  line-height: 1.6;
  margin-bottom: 30px;
}

.mission-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.mission-actions .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.mission-actions .btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.mission-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.mission-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-majorelle-blue);
  border: 2px solid var(--text-majorelle-blue);
  backdrop-filter: blur(12px);
}

.mission-actions .btn-secondary:hover {
  background: var(--text-majorelle-blue);
  color: white;
  transform: translateY(-3px);
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--gradient-card);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(99, 102, 241, 0.2);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-primary);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-hover);
}

.value-icon ion-icon {
  font-size: 2.4rem;
  color: white;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon ion-icon {
  transform: scale(1.1);
}

.value-card h4 {
  font-size: 2rem;
  color: var(--text-majorelle-blue);
  margin-bottom: 12px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-card p {
  font-size: 1.4rem;
  color: var(--text-granite-gray);
  line-height: 1.6;
}

.mission-stats {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.mission-stats .stat-item {
  text-align: center;
  animation: pulse 2s ease-in-out infinite;
}

.mission-stats .stat-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-majorelle-blue);
  display: block;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-stats .stat-label {
  font-size: 1.4rem;
  color: var(--text-granite-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonials Section */
.about-testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.about-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%236366f1" opacity="0.08"/></pattern></defs><rect width="100%" height="100%" fill="url(%23testimonial-dots)"/></svg>');
  pointer-events: none;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(99, 102, 241, 0.2);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.quote-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-primary);
}

.testimonial-card:hover .quote-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-hover);
}

.quote-icon ion-icon {
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
}

.testimonial-card:hover .quote-icon ion-icon {
  transform: scale(1.1);
}

.testimonial-text {
  font-size: 1.6rem;
  color: var(--text-granite-gray);
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

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

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--text-majorelle-blue);
  transition: all 0.3s ease;
}

.testimonial-card:hover .author-img {
  transform: scale(1.1);
}

.author-info h4 {
  font-size: 1.8rem;
  color: var(--text-majorelle-blue);
  margin-bottom: 5px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.author-info p {
  font-size: 1.4rem;
  color: var(--text-granite-gray);
  margin-bottom: 8px;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating ion-icon {
  font-size: 1.4rem;
  color: #fbbf24;
}

/* Team Section */
.about-team {
  padding: 100px 0;
  background: var(--bg-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background: var(--gradient-card);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-member:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(99, 102, 241, 0.2);
}

.team-member:hover::before {
  transform: scaleX(1);
}

.member-photo {
  position: relative;
  margin-bottom: 20px;
}

.member-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--text-majorelle-blue);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-primary);
}

.team-member:hover .member-photo img {
  transform: scale(1.1);
  box-shadow: var(--shadow-hover);
}

.member-social {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.social-link {
  width: 35px;
  height: 35px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-primary);
}

.social-link:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-hover);
}

.social-link ion-icon {
  font-size: 1.6rem;
}

.member-info h3 {
  font-size: 2.2rem;
  color: var(--text-majorelle-blue);
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.member-role {
  font-size: 1.6rem;
  color: var(--text-granite-gray);
  font-weight: 600;
  margin-bottom: 8px;
}

.member-desc {
  font-size: 1.4rem;
  color: var(--text-granite-gray);
  line-height: 1.6;
}

/* CTA Section */
.about-cta {
  padding: 100px 0;
  background: var(--gradient-background);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%236366f1" opacity="0.08"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cta-dots)"/></svg>');
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.8rem;
  color: var(--text-granite-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.cta-buttons .btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-majorelle-blue);
  border: 2px solid var(--text-majorelle-blue);
  backdrop-filter: blur(12px);
}

.cta-buttons .btn-secondary:hover {
  background: var(--text-majorelle-blue);
  color: white;
  transform: translateY(-3px);
}

.cta-buttons .btn ion-icon {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.cta-buttons .btn:hover ion-icon {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-banner {
    order: -1;
  }
  
  .mission-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .mission-values {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    flex-direction: row !important;
  }
  
  .step-content {
    margin-left: 80px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px 0;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-text {
    font-size: 1.6rem;
  }
  
  .hero-stats {
    gap: 30px;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2.6rem;
  }
  
  .mission-values {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-slider {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-content h2 {
    font-size: 2.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .about-story,
  .about-mission,
  .about-testimonials,
  .about-team,
  .about-cta {
    padding: 60px 0;
  }
  
  .step-content {
    margin-left: 60px;
    padding: 20px;
  }
  
  .mission-stats {
    flex-direction: column;
    gap: 20px;
  }
} 