/* About Section Styles - Premium Beauty Salon Design */

/* ===========================================
   HOMEPAGE ABOUT SECTION STYLES
   =========================================== */

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(137, 108, 108, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(229, 190, 181, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(238, 230, 202, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.about-floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.about-shape:nth-child(1) {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(137, 108, 108, 0.1), rgba(229, 190, 181, 0.05));
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.about-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(229, 190, 181, 0.08), rgba(238, 230, 202, 0.06));
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}

.about-shape:nth-child(3) {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(137, 108, 108, 0.06), rgba(229, 190, 181, 0.04));
  top: 50%;
  left: 25%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(10px) rotate(-3deg);
  }
}

/* About Header */
.about-header {
  position: relative;
  z-index: 2;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #896C6C, #7a5a5a);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(137, 108, 108, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

.about-badge i {
  margin-right: 8px;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #896C6C 0%, #7a5a5a 50%, #E5BEB5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.about-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #4a5568;
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.about-divider {
  width: 6rem;
  height: 4px;
  background: linear-gradient(90deg, #E5BEB5, #896C6C);
  border-radius: 2px;
  margin: 0 auto 3rem;
  animation: slideIn 1s ease-out 0.6s both;
}

/* About Content Grid */
.about-content-grid {
  position: relative;
  z-index: 2;
}

.about-content-left {
  position: relative;
}

.about-content-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* About Image Container */
.about-image-container {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow:
    0 25px 50px rgba(137, 108, 108, 0.15),
    0 15px 35px rgba(229, 190, 181, 0.1),
    0 5px 15px rgba(238, 230, 202, 0.08);
  border: 4px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.about-image-container:hover {
  transform: translateY(-5px);
  box-shadow:
    0 35px 70px rgba(137, 108, 108, 0.2),
    0 20px 40px rgba(229, 190, 181, 0.15),
    0 8px 20px rgba(238, 230, 202, 0.1);
}

.about-main-image {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-container:hover .about-main-image {
  transform: scale(1.02);
}

/* Decorative Elements */
.about-decor-circle {
  position: absolute;
  border-radius: 50%;
  animation: gentlePulse 3s ease-in-out infinite;
}

.about-decor-circle.top-right {
  width: 6rem;
  height: 6rem;
  background: rgba(229, 190, 181, 0.2);
  top: -1.5rem;
  right: -1.5rem;
  animation-delay: 0s;
}

.about-decor-circle.bottom-left {
  width: 8rem;
  height: 8rem;
  background: rgba(137, 108, 108, 0.1);
  bottom: -2rem;
  left: -2rem;
  animation-delay: 1.5s;
}

@keyframes gentlePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* Floating Stats Cards */
.about-stats-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(137, 108, 108, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInFromLeft 0.8s ease-out 1s both;
}

.about-stats-card.top-left {
  top: 2rem;
  left: 2rem;
  animation-delay: 0.8s;
}

.about-stats-card.top-right {
  top: 2rem;
  right: 2rem;
  animation-delay: 0.8s;
}

.about-stats-card.bottom-left {
  bottom: 2rem;
  left: 2rem;
  animation-delay: 1.2s;
}

.about-stats-card.bottom-right {
  bottom: 2rem;
  right: 2rem;
  animation-delay: 1.2s;
}

.about-stats-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.about-stats-icon.star {
  background: linear-gradient(135deg, #896C6C, #7a5a5a);
  color: white;
}

.about-stats-icon.heart {
  background: linear-gradient(135deg, #E5BEB5, #d4a8a0);
  color: #896C6C;
}

.about-stats-number {
  font-size: 1rem;
  font-weight: 700;
  color: #896C6C;
  margin-bottom: 0.125rem;
}

.about-stats-label {
  font-size: 0.75rem;
  color: #718096;
  line-height: 1;
}

/* About Description */
.about-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #2d3748;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Certificate Section */
.about-certificate-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(137, 108, 108, 0.1);
  animation: slideInFromRight 0.8s ease-out 0.8s both;
}

.certificate-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.certificate-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #896C6C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
}

.certificate-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #896C6C;
  margin-bottom: 0.25rem;
}

.certificate-subtitle {
  color: #896C6C;
  font-weight: 500;
}

.certificate-text {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.certificate-image {
  max-width: 100%;
  height: auto;
  max-height: 10rem;
  border-radius: 1rem;
  border: 3px solid rgba(229, 190, 181, 0.3);
  box-shadow: 0 8px 24px rgba(137, 108, 108, 0.1);
}

/* CTA Buttons */
.about-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 1s both;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-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;
}

.about-btn:hover::before {
  left: 100%;
}

.about-btn-primary {
  background: linear-gradient(135deg, #896C6C, #7a5a5a);
  color: white;
  box-shadow: 0 8px 25px rgba(137, 108, 108, 0.3);
}

.about-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(137, 108, 108, 0.4);
}

.about-btn-secondary {
  border: 2px solid #896C6C;
  color: #896C6C;
  background: transparent;
}

.about-btn-secondary:hover {
  background: #896C6C;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(137, 108, 108, 0.2);
}

.about-btn i {
  margin-right: 0.5rem;
}

/* ===========================================
   DEDICATED ABOUT PAGE STYLES
   =========================================== */

/* Hero Section */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(137, 108, 108, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(229, 190, 181, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, rgba(238, 230, 202, 0.9) 0%, rgba(238, 230, 202, 0.7) 100%);
}

.about-hero-shapes {
  position: absolute;
  inset: 0;
}

.about-hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.about-hero-shape:nth-child(1) {
  width: 16rem;
  height: 16rem;
  background: #896C6C;
  top: 10%;
  left: 10%;
}

.about-hero-shape:nth-child(2) {
  width: 12rem;
  height: 12rem;
  background: #E5BEB5;
  bottom: 10%;
  right: 10%;
}

.about-hero-shape:nth-child(3) {
  width: 8rem;
  height: 8rem;
  background: #896C6C;
  top: 50%;
  left: 25%;
}

.about-hero-content {
  position: relative;
  z-index: 10;
  max-width: 4xl;
  margin: 0 auto;
  padding: 2rem;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: #896C6C;
  color: white;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeInScale 0.8s ease-out;
}

.about-hero-badge i {
  margin-right: 0.5rem;
}

.about-hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #896C6C 0%, #7a5a5a 30%, #E5BEB5 70%, #d4a8a0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: slideInFromBottom 1s ease-out 0.2s both;
}

.about-hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #4a5568;
  line-height: 1.6;
  max-width: 3xl;
  margin: 0 auto 2rem;
  animation: slideInFromBottom 1s ease-out 0.4s both;
}

.about-hero-divider {
  width: 8rem;
  height: 4px;
  background: linear-gradient(90deg, #E5BEB5, #896C6C);
  border-radius: 2px;
  margin: 0 auto 0;
  animation: slideInFromBottom 1s ease-out 0.6s both;
}

/* Main Content Section */
.about-main-content {
  padding: 5rem 0;
  background: white;
}

.about-content-wrapper {
  max-width: 7xl;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-image-sticky {
  position: sticky;
  top: 2rem;
}

.about-image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow:
    0 25px 50px rgba(137, 108, 108, 0.15),
    0 15px 35px rgba(229, 190, 181, 0.1);
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #896C6C, #E5BEB5, #EEE6CA);
  border-radius: 2.5rem;
  z-index: -1;
  opacity: 0.1;
}

.about-content-sticky {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Story Section */
.about-story-section {
  animation: slideInFromLeft 1s ease-out 0.2s both;
}

.about-story-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.about-story-icon {
  width: 4rem;
  height: 4rem;
  background: #896C6C;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  margin-right: 1rem;
}

.about-story-title {
  font-size: 2rem;
  font-weight: 800;
  color: #896C6C;
  margin-bottom: 0.5rem;
}

.about-story-accent {
  width: 4rem;
  height: 4px;
  background: #E5BEB5;
  border-radius: 2px;
}

.about-story-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4a5568;
}

/* Certificate Section */
.about-cert-section {
  background: linear-gradient(135deg, rgba(238, 230, 202, 0.8), rgba(229, 190, 181, 0.6));
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(137, 108, 108, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: slideInFromRight 1s ease-out 0.4s both;
}

.about-cert-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.about-cert-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #896C6C;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
}

.about-cert-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #896C6C;
  margin-bottom: 0.25rem;
}

.about-cert-subtitle {
  color: #896C6C;
  font-weight: 600;
}

.about-cert-image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.about-cert-image {
  max-width: 100%;
  height: auto;
  max-height: 16rem;
  border-radius: 1.5rem;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 24px rgba(137, 108, 108, 0.15);
}

/* Values Section */
.about-values-section {
  animation: slideInFromLeft 1s ease-out 0.6s both;
}

.about-values-title {
  font-size: 2rem;
  font-weight: 800;
  color: #896C6C;
  margin-bottom: 2rem;
  text-align: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.about-value-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(137, 108, 108, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(137, 108, 108, 0.15);
}

.about-value-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.about-value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.about-value-icon.primary {
  background: linear-gradient(135deg, #896C6C, #7a5a5a);
}

.about-value-icon.secondary {
  background: linear-gradient(135deg, #E5BEB5, #d4a8a0);
  color: #896C6C;
}

.about-value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #896C6C;
}

.about-value-text {
  color: #4a5568;
  line-height: 1.6;
}

/* Stats Section */
.about-stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #896C6C 0%, #7a5a5a 100%);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.about-stat-item {
  text-align: center;
  animation: fadeInUp 0.8s ease-out both;
}

.about-stat-item:nth-child(1) { animation-delay: 0.1s; }
.about-stat-item:nth-child(2) { animation-delay: 0.2s; }
.about-stat-item:nth-child(3) { animation-delay: 0.3s; }
.about-stat-item:nth-child(4) { animation-delay: 0.4s; }

.about-stat-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA Section */
.about-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(238, 230, 202, 0.9), rgba(229, 190, 181, 0.7), rgba(238, 230, 202, 0.9));
}

.about-cta-content {
  text-align: center;
  max-width: 4xl;
  margin: 0 auto;
}

.about-cta-badge {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: #896C6C;
  color: white;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeInScale 0.8s ease-out;
}

.about-cta-badge i {
  margin-right: 0.5rem;
}

.about-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #896C6C;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: slideInFromBottom 1s ease-out 0.2s both;
}

.about-cta-text {
  font-size: 1.25rem;
  color: #4a5568;
  line-height: 1.6;
  max-width: 2xl;
  margin: 0 auto 3rem;
  animation: slideInFromBottom 1s ease-out 0.4s both;
}

.about-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  animation: slideInFromBottom 1s ease-out 0.6s both;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.about-cta-btn-primary {
  background: linear-gradient(135deg, #896C6C, #7a5a5a);
  color: white;
  box-shadow: 0 8px 25px rgba(137, 108, 108, 0.3);
}

.about-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(137, 108, 108, 0.4);
}

.about-cta-btn-secondary {
  border: 3px solid #896C6C;
  color: #896C6C;
  background: transparent;
}

.about-cta-btn-secondary:hover {
  background: #896C6C;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(137, 108, 108, 0.2);
}

.about-cta-btn i {
  margin-right: 0.5rem;
}

/* ===========================================
   ANIMATIONS
   =========================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 1024px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-sticky {
    position: static;
  }

  .about-main-image {
    height: 24rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .about-hero-title {
    font-size: 3rem;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .about-btn {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-title {
    font-size: 2rem;
  }
}
