/* ===== About Section Styles ===== */
.about {
  background: #1a1a1a;
  padding: 100px 0;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.95) 100%);
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.about .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about .section-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-weight: 300;
}

/* Meet the Developer */
.about-maker {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-maker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.about-maker h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

.about-maker p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.about-maker p:last-child {
  margin-bottom: 0;
}

/* About Intro */
.about-intro {
  text-align: center;
  margin-bottom: 60px;
}

.about-intro h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Oswald', sans-serif;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  max-width: 900px;
  margin: 0 auto;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 60px;
}

.about-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border-left: 3px solid transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  border-left-color: rgba(0, 180, 216, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-item:hover::before {
  opacity: 1;
}

.about-item:hover .about-icon {
  background: rgba(0, 180, 216, 0.15);
  border-color: rgba(0, 180, 216, 0.4);
}

.about-item:hover .about-icon i {
  color: rgba(0, 180, 216, 1);
  transform: scale(1.1);
}

.about-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.about-icon i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

.about-item h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.about-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* CTA Section */
.about-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Oswald', sans-serif;
}

.about-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-cta .cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4), 0 4px 15px rgba(0, 180, 216, 0.3);
}

.about-cta .cta-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 180, 216, 0.6), 0 5px 20px rgba(0, 180, 216, 0.4), 0 0 60px rgba(0, 180, 216, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  
  .about .section-title {
    font-size: 2.2rem;
  }
  
  .about .section-subtitle {
    font-size: 1.05rem;
  }
  
  .about-maker {
    padding: 40px 30px;
    margin-bottom: 60px;
  }
  
  .about-maker h3 {
    font-size: 1.7rem;
  }
  
  .about-maker p {
    font-size: 1rem;
  }
  
  .about-intro h3 {
    font-size: 1.8rem;
  }
  
  .about-intro p {
    font-size: 1rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-cta {
    padding: 40px 30px;
  }
  
  .about-cta h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 40px 0;
  }
  
  .about .section-title {
    font-size: 1.8rem;
  }
  
  .about .section-subtitle {
    font-size: 0.95rem;
  }
  
  .about-maker {
    padding: 30px 20px;
  }
  
  .about-maker h3 {
    font-size: 1.5rem;
  }
  
  .about-maker p {
    font-size: 0.95rem;
  }
  
  .about-intro h3 {
    font-size: 1.5rem;
  }
  
  .about-cta h3 {
    font-size: 1.5rem;
  }
  
  .about-cta p {
    font-size: 1rem;
  }
}
