/* Container Styles */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.services-container .row-service {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/* Service Card Styles */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  width: 350px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Service Title Styles */
.service-title {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.service-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.service-description {
  color: var(--dark-color);
  margin-bottom: 2rem;
}

/* Features List Styles */
.features-list {
  list-style: none;
}

.feature-item {
  background: var(--light-color);
  margin: 1rem 0;
  padding: 1.5rem;
  border-radius: 10px;
  position: relative;
  padding-right: 3rem;
}

.feature-item::before {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--accent-color);
  border-radius: 50%;
}

.feature-number {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-weight: bold;
}

/* Highlight Section */
.highlight {
  background: var(--gradient);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--light-color);
}

/* Fashion Strip Animation */
.fashion-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  pointer-events: none;
}

.strip {
  flex: 1;
  transform: skewX(-15deg) translateX(-10%);
  background: var(--gradient);
  opacity: 0.1;
  animation: stripAnimation 3s infinite alternate ease-in-out;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.text-content {
  position: relative;
}

/* Brand Title */
.brand-title {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleGlow 2s infinite alternate;
}

/* Fashion Cards */
.fashion-cards {
  position: relative;
  height: 600px;
}

.fashion-card {
  position: absolute;
  width: 280px;
  height: 380px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.5s ease;
}

/* Visual Area */
.visual-area {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 400px;
  perspective: 1000px;
}

.card {
  position: absolute;
  width: 220px;
  height: 140px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 85, 29, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(71, 218, 115, 0.2);
  backdrop-filter: blur(5px);
}

/* Animations */
@keyframes stripAnimation {
  0% { transform: skewX(-15deg) translateX(-10%); }
  100% { transform: skewX(-15deg) translateX(0); }
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 20px rgba(71, 218, 115, 0.3); }
  100% { text-shadow: 0 0 40px rgba(71, 218, 115, 0.6); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fashion-cards {
    height: 400px;
    transform: scale(0.8);
  }

  .brand-title {
    font-size: 3.5rem;
  }

  .visual-area {
    height: 240px;
    display: none;
  }
}

@media (max-width: 768px) {
  .services-container {
    display: flex;
    flex-direction: column-reverse;
    padding: 1rem;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .feature-item {
    padding: 1rem 2.5rem 1rem 1rem;
  }

  .hero {
    min-height: 90vh;
  }

  .fashion-cards {
    transform: scale(0.6);
  }

  .brand-title {
    font-size: 2.5rem;
  }

  .card {
    width: 200px;
    height: 150px;
  }
}