/* ========================
   GTK Studio - About Page Styles
   Creative & Minimal Design
   ======================== */

/* Common Layout Classes - About Page Specific */
.about-section {
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.about-section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* About Hero Section */
.about-hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a1a;
}

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

.about-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

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

.about-hero-shapes .about-shape {
  position: absolute;
  background: linear-gradient(135deg, rgba(125, 216, 125, 0.1), rgba(125, 216, 125, 0.05));
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.about-hero-shapes .about-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.about-hero-shapes .about-shape-2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  right: 10%;
  animation-delay: 5s;
}

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

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-gradient-text {
  background: linear-gradient(135deg, #7dd87d 0%, #5fb85f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.about-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.about-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* Story Section */
.about-story-section {
  padding: 6rem 0;
  background: #fafafa;
}

.about-story-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-section-decoration {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-story-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.story-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-lead {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 2rem;
}

.story-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-paragraph {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.story-visual-wrapper {
  position: relative;
}

.story-image-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image {
  width: 100%;
  height: auto;
  display: block;
}

.story-quote-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  max-width: 320px;
}

.quote-icon {
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.quote-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Vision & Mission Section */
.about-vision-section {
  padding: 6rem 0;
  background: white;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vision-card {
  text-align: center;
  padding: 3rem 2rem;
  background: #fafafa;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vision-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.vision-icon svg {
  color: var(--accent-green);
}

.vision-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.vision-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Values Section */
.about-values-section {
  padding: 6rem 0;
  background: #fafafa;
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.value-card {
  position: relative;
  padding: 2.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--accent-green), #6bc96b);
  transition: height 0.4s ease;
}

.value-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.value-card:hover::before {
  height: 100%;
}

.value-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
    color: var(--anthracite);
    opacity: 0.15;
}

.value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(125, 216, 125, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  color: var(--accent-green);
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.value-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Approach Section */
.about-approach-section {
  padding: 6rem 0;
  background: white;
}

.approach-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach-text-side {
  padding-right: 2rem;
}

.approach-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.approach-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.approach-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.approach-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #fafafa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.approach-feature:hover {
  background: rgba(125, 216, 125, 0.1);
  transform: translateX(10px);
}

.approach-feature svg {
  flex-shrink: 0;
  color: var(--accent-green);
}

.approach-feature span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.approach-visual-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-image-grid {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
  display: flex;
  gap: 1.5rem;
}

.approach-image-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-image-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.05) 0%, rgba(125, 216, 125, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.approach-image-item:hover::after {
  opacity: 1;
}

.approach-image-large {
  flex: 1.2;
  height: 100%;
  transform: translateY(0);
  z-index: 2;
}

.approach-image-item:not(.approach-image-large) {
  flex: 1;
  height: 100%;
  transform: translateY(60px);
  z-index: 1;
}

.approach-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-image-item:hover img {
  transform: scale(1.08);
}

.approach-image-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.approach-image-item:not(.approach-image-large):hover {
  transform: translateY(55px);
}

/* Disciplines Section */
.about-disciplines-section {
  padding: 6rem 0;
  background: #fafafa;
}

.disciplines-header {
  text-align: center;
  margin-bottom: 4rem;
}

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.discipline-card {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.discipline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.discipline-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.discipline-icon i {
  font-size: 3rem;
}

.discipline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.discipline-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Team Section */
.about-team-section {
  padding: 6rem 0;
  background: white;
}

.team-header {
  text-align: center;
  margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-10px);
}

.team-member-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member-card:hover .team-member-image {
  box-shadow: 0 15px 40px rgba(125, 216, 125, 0.2);
  border-color: var(--accent-green);
}

.team-member-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(125, 216, 125, 0.1) 0%, rgba(92, 184, 92, 0.05) 100%);
}

.team-member-placeholder svg {
  color: var(--text-secondary);
  opacity: 0.3;
}

.team-member-info {
  padding: 0 1rem;
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.team-member-position {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.team-member-card.coming-soon {
  opacity: 0.6;
}

.team-member-card.coming-soon .team-member-image {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  border-color: #e8e8e8;
}

.team-member-card.coming-soon:hover .team-member-image {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #d0d0d0;
}

.team-member-card.coming-soon .team-member-placeholder svg {
  opacity: 0.15;
}

.team-member-card.coming-soon .team-member-name {
  color: var(--text-secondary);
  font-style: italic;
}

.team-member-card.coming-soon .team-member-position {
  font-style: italic;
  font-size: 0.85rem;
}

/* CTA Section */
.about-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
  text-align: center;
  color: white;
}

.about-cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.about-cta-section p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-green) 0%, #6bc96b 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(125, 216, 125, 0.3);
}

.about-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(125, 216, 125, 0.4);
  color: white;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-story-content,
  .story-content-grid,
  .approach-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-lead {
    text-align: left;
    margin-bottom: 1rem;
  }

  .values-grid,
  .disciplines-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .story-quote-card {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 2rem;
    max-width: 100%;
  }

  .approach-text-side {
    padding-right: 0;
  }

  .approach-image-grid {
    max-width: 100%;
    height: 500px;
    margin: 0 auto;
  }
}

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

  .about-story-section,
  .about-vision-section,
  .about-values-section,
  .about-approach-section,
  .about-disciplines-section,
  .about-team-section {
    padding: 4rem 0;
  }

  .about-story-header,
  .values-header,
  .disciplines-header,
  .team-header {
    margin-bottom: 3rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }

  .team-member-image {
    width: 150px;
    height: 150px;
  }

  .approach-image-grid {
    height: 400px;
    flex-direction: column;
    gap: 1rem;
  }

  .approach-image-large,
  .approach-image-item:not(.approach-image-large) {
    flex: none;
    height: 250px;
    transform: translateY(0) !important;
  }

  .approach-image-item:hover {
    transform: translateY(-5px) !important;
  }
}

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

