/* ====== About Section ====== */
.about-section {
  background: linear-gradient(135deg, #0a1828 0%, #101820 50%, #16222a 100%);
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Advanced Background Effects */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(127, 255, 166, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(46, 204, 64, 0.06) 0%,
      transparent 50%
    ),
    linear-gradient(
      45deg,
      transparent 40%,
      rgba(127, 255, 166, 0.02) 50%,
      transparent 60%
    );
  animation: aboutAura 15s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes aboutAura {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}

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

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* Main Content Layout */
.about-main-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Profile Container */
.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-image-wrapper {
  position: relative;
  margin-bottom: 2rem;
  opacity: 0;
  transform: scale(0.8);
  animation: profileAppear 1s ease-out 1s forwards;
}

.profile-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #7fffa6;
  transition: all 0.4s ease;
  filter: brightness(1.1) contrast(1.1);
  box-shadow: 0 15px 35px rgba(127, 255, 166, 0.3);
}

.profile-image:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(127, 255, 166, 0.5);
  border-color: #2ecc40;
}

.status-indicator {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 24, 40, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(127, 255, 166, 0.3);
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #2ecc40;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-text {
  font-size: 0.8rem;
  color: #7fffa6;
  font-weight: 500;
}

/* Professional Tags */
.professional-tags {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

.tag {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(127, 255, 166, 0.1),
    rgba(46, 204, 64, 0.1)
  );
  color: #7fffa6;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(127, 255, 166, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tag:hover {
  background: linear-gradient(
    135deg,
    rgba(127, 255, 166, 0.2),
    rgba(46, 204, 64, 0.2)
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(127, 255, 166, 0.2);
}

/* About Text Content */
.about-text-content {
  padding-left: 1rem;
}

.text-paragraph {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateX(30px);
  animation: slideInFromRight 1s ease-out forwards;
}

.text-paragraph:nth-child(1) {
  animation-delay: 1.2s;
}
.text-paragraph:nth-child(2) {
  animation-delay: 1.4s;
}
.text-paragraph:nth-child(3) {
  animation-delay: 1.6s;
}
.text-paragraph:nth-child(4) {
  animation-delay: 1.8s;
}

.text-paragraph p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.text-paragraph strong {
  color: #7fffa6;
  font-weight: 600;
}

.highlight {
  background: linear-gradient(135deg, #7fffa6 0%, #2ecc40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* CV Download Section */
.cv-download-section {
  text-align: center;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 2s forwards;
}

.cv-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #7fffa6 0%, #2ecc40 100%);
  color: #0a1a0a;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(127, 255, 166, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cv-download-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cv-download-btn:hover::before {
  left: 100%;
}

.cv-download-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(127, 255, 166, 0.5);
  filter: brightness(1.1);
}

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cv-download-btn:hover .btn-icon {
  transform: scale(1.1);
}

.cv-description {
  margin-top: 1rem;
  color: #b2f7cc;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.9;
}

.cv-size {
  font-size: 0.9rem;
  opacity: 0.8;
  background: rgba(16, 24, 32, 0.2);
  padding: 0.2rem 0.8rem;
  border-radius: 15px;
}

/* Title Decorations */
.title-line-2 {
  display: block;
  position: relative;
  transform: translateX(30px);
  opacity: 0;
  animation: slideInTitle 1s ease-out 1.5s forwards;
}

@keyframes slideInTitle {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.title-cursor {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background: #7fffa6;
  margin-left: 5px;
  animation: blink 1s infinite;
  vertical-align: baseline;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.title-decorations {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.8s forwards;
}

.decoration-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #7fffa6, transparent);
  border-radius: 1px;
}

.decoration-dots {
  display: flex;
  gap: 0.5rem;
}

.decoration-dots span {
  width: 8px;
  height: 8px;
  background: #7fffa6;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.decoration-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.decoration-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Enhanced Mission Statement */
.mission-container {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(127, 255, 166, 0.05);
  border-radius: 16px;
  border-left: 4px solid #7fffa6;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 1s ease-out 2s forwards;
}

.mission-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #7fffa6, #2ecc40);
  padding: 0.8rem;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(127, 255, 166, 0.2);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

.highlight-text {
  color: #7fffa6;
  font-weight: 600;
  background: linear-gradient(135deg, #7fffa6, #2ecc40);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7fffa6, transparent);
  opacity: 0.5;
}

/* Action Cards */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp 1s ease-out 2.3s forwards;
}

.action-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(127, 255, 166, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(127, 255, 166, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.action-card:hover::before {
  left: 100%;
}

.primary-action {
  background: linear-gradient(
    135deg,
    rgba(127, 255, 166, 0.1),
    rgba(46, 204, 64, 0.05)
  );
}

.secondary-action {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.1),
    rgba(99, 102, 241, 0.05)
  );
}

.action-card:hover {
  transform: translateY(-3px);
  border-color: rgba(127, 255, 166, 0.4);
  box-shadow: 0 8px 25px rgba(127, 255, 166, 0.15);
}

.action-icon {
  font-size: 1.3rem;
  padding: 0.6rem;
  border-radius: 8px;
  background: rgba(127, 255, 166, 0.15);
}

.action-content h4 {
  margin: 0 0 0.2rem 0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.action-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* Interactive Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(8, 14, 20, 0.8),
    rgba(15, 25, 35, 0.6)
  );
  border-radius: 16px;
  border: 1px solid rgba(127, 255, 166, 0.15);
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 1s ease-out 2.6s forwards;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #7fffa6;
  line-height: 1;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 15px rgba(127, 255, 166, 0.4);
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(127, 255, 166, 0.3),
    transparent
  );
  margin: 0 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(127, 255, 166, 0.15) 0%,
    rgba(46, 204, 64, 0.1) 100%
  );
  color: #7fffa6;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(127, 255, 166, 0.3);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(127, 255, 166, 0.2);
}

.hero-intro-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.eco-highlight {
  background: linear-gradient(135deg, #7fffa6 0%, #2ecc40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.eco-highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7fffa6, #2ecc40);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 500px;
  margin-top: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease-out 0.3s forwards;
}

.profile-showcase {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 25px;
  border: 3px solid rgba(127, 255, 166, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(127, 255, 166, 0.2);
  transition: all 0.4s ease;
}

.hero-image:hover {
  transform: scale(1.02);
  border-color: rgba(127, 255, 166, 0.5);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(127, 255, 166, 0.3);
}

.status-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(127, 255, 166, 0.4);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #7fffa6;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #7fffa6;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(127, 255, 166, 0.6);
}

/* Main About Content */
.about-main {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Personal Column */
.personal-column {
  position: sticky;
  top: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1s forwards;
}

.info-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(127, 255, 166, 0.06) 100%
  );
  border-radius: 25px;
  border: 1px solid rgba(127, 255, 166, 0.25);
  backdrop-filter: blur(20px);
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(127, 255, 166, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 30px rgba(127, 255, 166, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.title-icon {
  font-size: 2rem;
  background: linear-gradient(
    135deg,
    rgba(127, 255, 166, 0.2) 0%,
    rgba(46, 204, 64, 0.1) 100%
  );
  padding: 0.8rem;
  border-radius: 15px;
  border: 1px solid rgba(127, 255, 166, 0.3);
}

.role-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Quick Stats */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-group {
  text-align: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(127, 255, 166, 0.1) 0%,
    rgba(46, 204, 64, 0.05) 100%
  );
  border-radius: 15px;
  border: 1px solid rgba(127, 255, 166, 0.2);
  transition: all 0.3s ease;
}

.stat-group:hover {
  background: linear-gradient(
    135deg,
    rgba(127, 255, 166, 0.15) 0%,
    rgba(46, 204, 64, 0.08) 100%
  );
  border-color: rgba(127, 255, 166, 0.4);
  transform: translateY(-3px);
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #7fffa6;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(127, 255, 166, 0.4);
}

/* Contact Actions */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
}

.action-btn.primary {
  background: linear-gradient(135deg, #7fffa6 0%, #2ecc40 100%);
  color: #000;
  box-shadow: 0 8px 25px rgba(127, 255, 166, 0.4);
}

.action-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(127, 255, 166, 0.6);
}

.action-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #7fffa6;
  border: 2px solid rgba(127, 255, 166, 0.4);
}

.action-btn.secondary:hover {
  background: rgba(127, 255, 166, 0.12);
  border-color: rgba(127, 255, 166, 0.6);
  transform: translateY(-3px);
}

/* Story Column */
.story-column {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1.3s forwards;
}

/* About Text Wrapper with Glowing Effect */
.about-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1.3s forwards;
  transition: all 0.3s ease;
  border-radius: 25px;
  position: relative;
}

.about-text-wrapper:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 0 20px rgba(127, 255, 166, 0.3));
}

.about-text-wrapper:hover .clean-text-container {
  border-color: rgba(127, 255, 166, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(127, 255, 166, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-text-wrapper:hover .clean-text-container::before {
  opacity: 1;
}

/* Clean Text Container */
.clean-text-container {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(127, 255, 166, 0.04) 100%
  );
  border-radius: 25px;
  border: 1px solid rgba(127, 255, 166, 0.2);
  backdrop-filter: blur(15px);
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.clean-text-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7fffa6, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story-title {
  font-size: 2rem;
  color: #7fffa6;
  font-weight: 700;
  margin: 0 0 2rem 0;
  background: linear-gradient(135deg, #7fffa6 0%, #2ecc40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 0;
}

.story-text p {
  margin-bottom: 1.5rem;
}

.story-text strong {
  color: #7fffa6;
  font-weight: 600;
}

.story-text em {
  color: #b2f7cc;
  font-style: normal;
  font-weight: 500;
}

/* Card Styles for Other Sections */
.journey-card,
.values-card,
.lifestyle-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(127, 255, 166, 0.04) 100%
  );
  border-radius: 25px;
  border: 1px solid rgba(127, 255, 166, 0.2);
  backdrop-filter: blur(15px);
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.journey-card::before,
.values-card::before,
.lifestyle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7fffa6, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.header-icon {
  font-size: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(127, 255, 166, 0.25) 0%,
    rgba(46, 204, 64, 0.15) 100%
  );
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(127, 255, 166, 0.4);
}

.card-header h3 {
  font-size: 2rem;
  color: #7fffa6;
  font-weight: 700;
  margin: 0;
}

/* Journey Content */
.journey-content {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 1.1rem;
}

.journey-text {
  margin-bottom: 1.5rem;
}

.journey-text strong {
  color: #7fffa6;
  font-weight: 600;
}

.journey-text em {
  color: #b2f7cc;
  font-style: normal;
  font-weight: 500;
}

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

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(127, 255, 166, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(127, 255, 166, 0.15);
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(127, 255, 166, 0.12);
  border-color: rgba(127, 255, 166, 0.3);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-item h4 {
  color: #7fffa6;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.value-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Lifestyle Content */
.lifestyle-content {
  color: rgba(255, 255, 255, 0.85);
}

.lifestyle-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.interests-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.interest-bubble {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(127, 255, 166, 0.12) 0%,
    rgba(46, 204, 64, 0.08) 100%
  );
  border-radius: 50px;
  border: 1px solid rgba(127, 255, 166, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.interest-bubble:hover {
  background: linear-gradient(
    135deg,
    rgba(127, 255, 166, 0.2) 0%,
    rgba(46, 204, 64, 0.12) 100%
  );
  border-color: rgba(127, 255, 166, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(127, 255, 166, 0.2);
}

.interest-emoji {
  font-size: 1.5rem;
}

.interest-name {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

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

@keyframes slideInFromRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes profileAppear {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
  .about-main-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .profile-container {
    align-items: center;
  }

  .about-text-content {
    padding-left: 0;
  }

  .text-paragraph p {
    text-align: left;
  }

  .professional-tags {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .personal-column {
    position: static;
  }

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

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .action-card {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .stat-item {
    flex: 0 0 auto;
    min-width: 80px;
  }

  .stat-divider {
    display: none;
  }

  .interests-showcase {
    flex-direction: column;
    align-items: center;
  }

  .interest-bubble {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }

  .profile-image {
    width: 180px;
    height: 180px;
  }

  .text-paragraph p {
    font-size: 1rem;
  }

  .quick-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .journey-card,
  .values-card,
  .lifestyle-card,
  .clean-text-container {
    padding: 2.5rem 2rem;
  }

  .info-card {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 4rem 0 2rem;
  }

  .about-container {
    padding: 0 1rem;
  }

  .profile-image {
    width: 140px;
    height: 140px;
  }

  .info-card,
  .journey-card,
  .values-card,
  .lifestyle-card,
  .clean-text-container {
    padding: 2rem 1.5rem;
  }

  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .action-card {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .interests-showcase {
    flex-direction: column;
    align-items: center;
  }

  .interest-bubble {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
