/* About Us Page - Modern Clean Design */

/* Hero Section - Minimal with Overlay */
.about-hero {
  min-height: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(135deg, rgba(58, 12, 15, 0.85) 0%, rgba(58, 12, 15, 0.95) 100%),
    url('../images/background.jpg') center/cover no-repeat;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #3a0c0f, transparent);
}

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

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fcf1db;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.2;
}

.about-hero p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(252, 241, 219, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* Story Section - Cards Layout */
.story-section {
  background: #3a0c0f;
  padding: 100px 0;
}

.story-grid {
  display: flex;
  justify-content: center;
  align-items: start;
}

.story-content {
  background: linear-gradient(135deg, rgba(252, 241, 219, 0.98) 0%, rgba(252, 241, 219, 0.95) 100%);
  padding: 50px 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(221, 165, 72, 0.2);
  border: 2px solid rgba(221, 165, 72, 0.2);
  max-width: 900px;
  text-align: center;
}

.story-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #3a0c0f;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.3;
}

.story-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(58, 12, 15, 0.75);
  margin-bottom: 20px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-content strong {
  color: #3a0c0f;
  font-weight: 600;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-box {
  background: linear-gradient(135deg, rgba(252, 241, 219, 0.98) 0%, rgba(252, 241, 219, 0.95) 100%);
  padding: 35px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(221, 165, 72, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(221, 165, 72, 0.2);
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dda548, #c99437);
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(221, 165, 72, 0.3);
  border-color: #dda548;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: #3a0c0f;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(58, 12, 15, 0.7);
  font-weight: 500;
}

/* Vision Section - Centered Content */
.vision-section {
  padding: 100px 0;
  background: #3a0c0f;
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(252, 241, 219, 0.98) 0%, rgba(252, 241, 219, 0.95) 100%);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 15px 60px rgba(221, 165, 72, 0.2);
  border: 2px solid rgba(221, 165, 72, 0.2);
}

.vision-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #3a0c0f;
  margin-bottom: 35px;
  font-weight: 600;
  line-height: 1.3;
}

.vision-content p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 2;
  color: rgba(58, 12, 15, 0.8);
  margin-bottom: 25px;
}

.vision-content p:last-child {
  margin-bottom: 0;
}

.vision-content strong {
  color: #3a0c0f;
  font-weight: 600;
}

/* Benefits Section - Icon Grid */
.benefits-section {
  padding: 100px 0;
  background: #3a0c0f;
}

.benefits-header {
  text-align: center;
  margin-bottom: 70px;
}

.benefits-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fcf1db;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefits-header p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(252, 241, 219, 0.8);
  font-weight: 400;
}

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

.benefit-card {
  background: linear-gradient(135deg, rgba(252, 241, 219, 0.98) 0%, rgba(252, 241, 219, 0.95) 100%);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(221, 165, 72, 0.2);
  transition: all 0.3s ease;
  border: 2px solid rgba(221, 165, 72, 0.2);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(221, 165, 72, 0.3);
  border-color: #dda548;
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  filter: grayscale(0.3);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  filter: grayscale(0);
  transform: scale(1.1);
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #3a0c0f;
  margin-bottom: 12px;
  font-weight: 600;
}

.benefit-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(58, 12, 15, 0.7);
}

/* Professional Credentials Section */
.credentials-section {
  padding: 100px 0;
  background: #3a0c0f;
}

.credentials-header {
  text-align: center;
  margin-bottom: 70px;
}

.credentials-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fcf1db;
  margin-bottom: 15px;
  font-weight: 600;
}

.credentials-header p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(252, 241, 219, 0.8);
  font-weight: 400;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.credential-card {
  background: linear-gradient(135deg, rgba(252, 241, 219, 0.98) 0%, rgba(252, 241, 219, 0.95) 100%);
  padding: 45px 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(221, 165, 72, 0.2);
  transition: all 0.3s ease;
  border: 2px solid rgba(221, 165, 72, 0.2);
  position: relative;
  overflow: hidden;
}

.credential-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #dda548, #c99437);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.credential-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(221, 165, 72, 0.3);
  border-color: #dda548;
}

.credential-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.credential-card:hover .credential-icon {
  transform: scale(1.15);
}

.credential-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #3a0c0f;
  margin-bottom: 20px;
  font-weight: 600;
}

.credential-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(58, 12, 15, 0.75);
  margin-bottom: 10px;
}

.credential-highlight {
  font-weight: 600;
  color: #3a0c0f;
  font-size: 1.05rem;
  margin-top: 15px;
}

.credential-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.credential-list li {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 2;
  color: rgba(58, 12, 15, 0.8);
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
}

.credential-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c99437;
  font-weight: 700;
  font-size: 1.2rem;
}

.credential-list li strong {
  color: #3a0c0f;
  font-weight: 600;
}

.credentials-statement {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(252, 241, 219, 0.98) 0%, rgba(252, 241, 219, 0.95) 100%);
  padding: 40px 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(221, 165, 72, 0.2);
  border: 2px solid rgba(221, 165, 72, 0.3);
}

.credentials-statement p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(58, 12, 15, 0.85);
  margin: 0;
}

.credentials-statement strong {
  color: #3a0c0f;
  font-weight: 600;
}

/* Philosophy & Approach Section */
.philosophy-section {
  padding: 100px 0;
  background: #3a0c0f;
}

.philosophy-header {
  text-align: center;
  margin-bottom: 70px;
}

.philosophy-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fcf1db;
  margin-bottom: 15px;
  font-weight: 600;
}

.philosophy-header p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(252, 241, 219, 0.8);
  font-weight: 400;
}

.philosophy-content {
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-main {
  max-width: 950px;
  margin: 0 auto 60px;
  background: linear-gradient(135deg, rgba(252, 241, 219, 0.98) 0%, rgba(252, 241, 219, 0.95) 100%);
  padding: 45px 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(221, 165, 72, 0.2);
  border: 2px solid rgba(221, 165, 72, 0.3);
  text-align: center;
}

.philosophy-main p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(58, 12, 15, 0.8);
  margin: 0;
}

.philosophy-main strong {
  color: #3a0c0f;
  font-weight: 600;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.philosophy-card {
  background: linear-gradient(135deg, rgba(252, 241, 219, 0.98) 0%, rgba(252, 241, 219, 0.95) 100%);
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(221, 165, 72, 0.2);
  transition: all 0.3s ease;
  border: 2px solid rgba(221, 165, 72, 0.2);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dda548, #c99437);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.philosophy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(221, 165, 72, 0.35);
  border-color: #dda548;
}

.philosophy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #3a0c0f;
  margin-bottom: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.philosophy-card p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(58, 12, 15, 0.75);
  margin: 0;
}

.philosophy-card strong {
  color: #3a0c0f;
  font-weight: 600;
}

.philosophy-statement {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(252, 241, 219, 0.98) 0%, rgba(252, 241, 219, 0.95) 100%);
  padding: 40px 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(221, 165, 72, 0.2);
  border: 2px solid rgba(221, 165, 72, 0.3);
}

.philosophy-statement p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(58, 12, 15, 0.85);
  margin: 0;
}

.philosophy-statement strong {
  color: #3a0c0f;
  font-weight: 600;
}

/* Team Section - Profile Cards */
.team-section {
  padding: 100px 0;
  background: #3a0c0f;
}

.team-header {
  text-align: center;
  margin-bottom: 70px;
}

.team-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fcf1db;
  margin-bottom: 15px;
  font-weight: 600;
}

.team-header p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(252, 241, 219, 0.8);
  font-weight: 400;
}

/* Team Carousel Styles */
.team-carousel-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.team-section .carousel-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
}

.team-section .controls-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.team-section .carousel-container {
  width: 100%;
  max-width: 400px;
  height: 420px;
  position: relative;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Navigation Arrows */
.team-section .nav-arrow {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dda548 0%, #c99437 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
  box-shadow: 0 5px 20px rgba(221, 165, 72, 0.4);
  flex-shrink: 0;
}

.team-section .nav-arrow:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(221, 165, 72, 0.6);
}

.team-section .nav-arrow:active {
  transform: scale(0.95);
}

.team-section .nav-arrow svg {
  width: 26px;
  height: 26px;
  stroke: #3a0c0f;
  stroke-width: 2.5;
}

.team-section .nav-arrow.left {
  margin-right: 10px;
}

.team-section .nav-arrow.right {
  margin-left: 10px;
}

/* Mobile nav arrows container - hidden on desktop */
.nav-arrows-mobile {
  display: none;
}

.team-section .carousel-track {
  width: 400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-section .card {
  position: absolute;
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, rgba(252, 241, 219, 0.98) 0%, rgba(252, 241, 219, 0.95) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 3px solid rgba(221, 165, 72, 0.3);
}

.team-section .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-section .card.center {
  z-index: 10;
  transform: scale(1.05) translateZ(0);
  border-color: #dda548;
  box-shadow: 0 25px 60px rgba(221, 165, 72, 0.4);
}

.team-section .card.center img {
  filter: none;
}

.team-section .card.up-1 {
  z-index: 5;
  transform: translateY(-120px) scale(0.85) translateZ(-100px);
  opacity: 0.7;
}

.team-section .card.up-1 img {
  filter: grayscale(100%);
}

.team-section .card.down-1 {
  z-index: 5;
  transform: translateY(120px) scale(0.85) translateZ(-100px);
  opacity: 0.7;
}

.team-section .card.down-1 img {
  filter: grayscale(100%);
}

.team-section .card.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Member Info Section */
.member-info {
  text-align: center;
  transition: all 0.5s ease-out;
  background: linear-gradient(135deg, rgba(252, 241, 219, 0.98) 0%, rgba(252, 241, 219, 0.95) 100%);
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(221, 165, 72, 0.2);
  border: 2px solid rgba(221, 165, 72, 0.2);
  max-width: 450px;
}

.member-name {
  font-family: var(--font-heading);
  color: #3a0c0f;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: block;
  transition: opacity 0.3s ease;
}

.member-name::before,
.member-name::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: #dda548;
}

.member-name::before {
  left: -80px;
}

.member-name::after {
  right: -80px;
}

.member-role {
  font-family: var(--font-body);
  color: #3a0c0f;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(135deg, #dda548 0%, #c99437 100%);
  padding: 8px 20px;
  border-radius: 25px;
  transition: opacity 0.3s ease;
}

.member-bio {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(58, 12, 15, 0.75);
  margin-bottom: 12px;
  transition: opacity 0.3s ease;
}

.member-bio strong {
  color: #3a0c0f;
  font-weight: 600;
}

.member-contact {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(58, 12, 15, 0.15);
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.member-contact a {
  display: inline-flex;
  align-items: center;
  color: #3a0c0f;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 10px 18px;
  background: rgba(58, 12, 15, 0.08);
  border-radius: 8px;
}

.member-contact a:hover {
  background: linear-gradient(135deg, #dda548 0%, #c99437 100%);
  color: #3a0c0f;
}

/* Dots Navigation */
.team-section .dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.team-section .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(252, 241, 219, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.team-section .dot:hover {
  background: rgba(252, 241, 219, 0.5);
}

.team-section .dot.active {
  background: #dda548;
  transform: scale(1.3);
  border-color: #fcf1db;
}

/* CTA Section */
.about-cta {
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(58, 12, 15, 0.95) 0%, rgba(40, 10, 12, 0.98) 100%);
  text-align: center;
}

.about-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #fcf1db;
  margin-bottom: 35px;
  font-weight: 600;
  line-height: 1.3;
}

.about-cta .btn {
  font-size: 1rem;
  padding: 16px 50px;
  border-radius: 50px;
  background: #fcf1db;
  color: #3a0c0f;
  border: none;
  text-transform: none;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(252, 241, 219, 0.3);
}

.about-cta .btn:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(252, 241, 219, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team Carousel Responsive */
  .team-carousel-container {
    flex-direction: column;
    gap: 25px;
    min-height: auto;
    justify-content: center;
    align-items: center;
  }

  .team-section .carousel-section {
    order: 1;
    max-width: 420px;
    width: 100%;
  }

  .team-section .controls-section {
    order: 2;
    width: 100%;
  }

  /* Hide desktop buttons, show mobile container */
  .team-section .nav-arrow.desktop-only {
    display: none;
  }

  .nav-arrows-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    order: 3;
    margin-top: 10px;
  }

  .nav-arrows-mobile .nav-arrow {
    margin: 0;
  }

  .team-section .nav-arrow {
    width: 50px;
    height: 50px;
  }

  .team-section .carousel-container {
    height: 420px;
    max-width: 420px;
  }

  .team-section .carousel-track {
    width: 400px;
  }

  .team-section .card {
    width: 380px;
    height: 380px;
  }

  .team-section .card.up-1 {
    transform: translateY(-100px) scale(0.85) translateZ(-100px);
  }

  .team-section .card.down-1 {
    transform: translateY(100px) scale(0.85) translateZ(-100px);
  }

  .member-info {
    max-width: 100%;
    padding: 35px 30px;
  }

  .member-name {
    font-size: 1.8rem;
  }

  .member-name::before,
  .member-name::after {
    width: 40px;
  }

  .member-name::before {
    left: -55px;
  }

  .member-name::after {
    right: -55px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 5vh;
  }

  .story-section,
  .vision-section,
  .benefits-section,
  .credentials-section,
  .philosophy-section,
  .team-section {
    padding: 70px 0;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .credential-card {
    padding: 35px 25px;
  }

  .credentials-statement {
    padding: 30px 25px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .philosophy-card {
    padding: 35px 25px;
  }

  .philosophy-main,
  .philosophy-statement {
    padding: 35px 30px;
  }

  .story-content {
    padding: 35px 25px;
  }

  .vision-content {
    padding: 40px 30px;
  }

  .stat-box {
    padding: 25px 20px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 35px 25px;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  /* Team Carousel 768px */
  .team-section .carousel-section {
    max-width: 380px;
  }

  .team-section .carousel-container {
    height: 380px;
    max-width: 380px;
  }

  .team-section .carousel-track {
    width: 360px;
  }

  .team-section .card {
    width: 340px;
    height: 340px;
  }

  .team-section .card.up-1 {
    transform: translateY(-90px) scale(0.85) translateZ(-100px);
  }

  .team-section .card.down-1 {
    transform: translateY(90px) scale(0.85) translateZ(-100px);
  }

  .member-info {
    padding: 30px 25px;
  }

  .member-name {
    font-size: 1.6rem;
  }

  .member-name::before,
  .member-name::after {
    display: none;
  }

  .member-bio {
    font-size: 0.9rem;
  }

  .team-section .nav-arrow {
    width: 45px;
    height: 45px;
  }

  .team-section .nav-arrow svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .story-content h2,
  .vision-content h2,
  .benefits-header h2,
  .credentials-header h2,
  .philosophy-header h2,
  .team-header h2 {
    font-size: 1.8rem;
  }

  .story-content {
    padding: 30px 20px;
  }

  .philosophy-main,
  .philosophy-statement {
    padding: 30px 25px;
  }

  .philosophy-card {
    padding: 30px 20px;
  }

  .vision-content {
    padding: 35px 25px;
  }

  .vision-content p {
    font-size: 1rem;
  }

  /* Team Carousel 576px */
  .team-carousel-container {
    gap: 20px;
  }

  .team-section .carousel-section {
    max-width: 320px;
  }

  .team-section .carousel-container {
    height: 320px;
    max-width: 320px;
  }

  .team-section .carousel-track {
    width: 300px;
  }

  .team-section .card {
    width: 280px;
    height: 280px;
  }

  .team-section .card.up-1 {
    transform: translateY(-75px) scale(0.85) translateZ(-100px);
  }

  .team-section .card.down-1 {
    transform: translateY(75px) scale(0.85) translateZ(-100px);
  }

  .member-info {
    padding: 25px 20px;
  }

  .member-name {
    font-size: 1.4rem;
  }

  .member-role {
    font-size: 0.85rem;
    padding: 6px 15px;
  }

  .member-bio {
    font-size: 0.85rem;
    line-height: 1.7;
  }

  .team-section .nav-arrow {
    width: 40px;
    height: 40px;
  }

  .team-section .nav-arrow svg {
    width: 20px;
    height: 20px;
  }

  .member-contact {
    flex-direction: column;
    gap: 10px;
  }

  .member-contact a {
    justify-content: center;
  }

  .team-section .dot {
    width: 12px;
    height: 12px;
  }
}
