/* ==========================================================================
   LET'S MOVE - Landing Page Sections (Exact Figma Match)
   ========================================================================== */

/* ==========================================================================
   Section Headers - Common Style for all section titles
   Font: 52px, Poppins Bold 700
   Color: gradient #FDFEFE → #F9A61A → #FDFEFE
   ========================================================================== */
.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__title {
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  background: linear-gradient(180deg, #fdfefe 0%, #f9a61a 50%, #fdfefe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   Images Grid Section (Frame 16 - 4 overlapping images)
   ========================================================================== */
.images-grid {
  padding: 60px 0;
  background: var(--color-bg-dark);
}

.images-grid__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.images-grid__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.images-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.images-grid__item:hover img {
  transform: scale(1.05);
}

/* Overlapping effect */
.images-grid__item--1 {
  grid-column: 1 / 2;
  height: 324px;
  margin-top: 40px;
}

.images-grid__item--2 {
  grid-column: 2 / 3;
  height: 376px;
}

.images-grid__item--3 {
  grid-column: 3 / 4;
  height: 321px;
  margin-top: 50px;
}

.images-grid__item--4 {
  grid-column: 4 / 5;
  height: 317px;
  margin-top: 60px;
}

/* ==========================================================================
   Testimonials Section (Frame 59 - "Vocea Membrilor Noștri")
   ========================================================================== */
.testimonials {
  padding: 80px 0;
  background: var(--color-bg-dark);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fdfefe;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card__text {
  font-size: 16px;
  line-height: 1.75;
  color: #111111;
  margin: 0;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__name {
  font-weight: 600;
  color: #111111;
  display: block;
}

.testimonial-card__role {
  font-size: 14px;
  color: #666666;
  display: block;
}

/* ==========================================================================
   Contact Section (Frame 58)
   ========================================================================== */
.contact-section {
  padding: 80px 0;
  background: var(--color-bg-dark);
}

.contact-section__intro {
  font-size: 18px;
  font-weight: 600;
  color: #fdfefe;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fdfefe;
  font-family: var(--font-primary);
  font-size: 16px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0a1a1;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f9a61a;
  background: rgba(249, 166, 26, 0.05);
}

/* ==========================================================================
   Gallery Section (Frame 154 - "Povești în imagini")
   ========================================================================== */
.gallery {
  padding: 80px 0;
  background: var(--color-bg-dark);
  overflow: hidden;
}

.gallery__carousel {
  width: 100%;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: 24px;
  animation: scroll-gallery 30s linear infinite;
}

.gallery__slide {
  flex-shrink: 0;
  width: 280px;
  height: 312px;
  border-radius: 16px;
  overflow: hidden;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__slide:hover img {
  transform: scale(1.1);
}

@keyframes scroll-gallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   App Section (Frame 155 - "Simplu. Rapid. UPFit.")
   ========================================================================== */
.app-section {
  padding: 80px 0;
  background: var(--color-bg-dark);
}

.app-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.app-section__info {
  background: #fdfefe;
  border-radius: 24px;
  padding: 48px;
}

.app-section__info p {
  font-size: 16px;
  line-height: 1.75;
  color: #111111;
  margin: 0 0 32px;
}

.app-section__buttons {
  display: flex;
  gap: 16px;
}

.app-store-btn img {
  height: 48px;
  width: auto;
}

.app-section__image {
  text-align: center;
}

.app-section__image img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Services Section (Frame 185)
   ========================================================================== */
.services {
  padding: 80px 0;
  background: var(--color-bg-dark);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.service-card:hover {
  background: rgba(249, 166, 26, 0.1);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #fdfefe;
  margin: 0 0 12px;
}

.service-card__desc {
  font-size: 14px;
  color: #a0a1a1;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   Pricing Section (Frame 153 - "Găsește-ți formula perfectă")
   ========================================================================== */
.pricing {
  padding: 80px 0;
  background: var(--color-bg-dark);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card--featured {
  background: linear-gradient(
    180deg,
    rgba(249, 166, 26, 0.2) 0%,
    rgba(249, 166, 26, 0.05) 100%
  );
  border-color: #f9a61a;
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f9a61a;
  color: #111111;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 20px;
}

.pricing-card__title {
  font-size: 24px;
  font-weight: 600;
  color: #fdfefe;
  margin: 0 0 24px;
}

.pricing-card__price {
  margin-bottom: 32px;
}

.pricing-card__amount {
  font-size: 48px;
  font-weight: 700;
  color: #f9a61a;
}

.pricing-card__currency {
  font-size: 16px;
  color: #a0a1a1;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.pricing-card__features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fdfefe;
  font-size: 14px;
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

/* ==========================================================================
   FAQ Section (Frame 431)
   ========================================================================== */
.faq {
  padding: 80px 0;
  background: var(--color-bg-dark);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.faq-item {
  background: #fdfefe;
  border-radius: 12px;
  padding: 24px;
}

.faq-item__question {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 12px;
}

.faq-item__answer {
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
  .section__title {
    font-size: 42px;
  }

  .images-grid__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .images-grid__item--1,
  .images-grid__item--2,
  .images-grid__item--3,
  .images-grid__item--4 {
    margin-top: 0;
    height: 280px;
  }

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

  .app-section__content {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

@media (max-width: 768px) {
  .section__title {
    font-size: 32px;
  }

  .section__header {
    margin-bottom: 40px;
  }

  .images-grid__wrapper {
    grid-template-columns: 1fr;
  }

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

  .gallery__slide {
    width: 200px;
    height: 220px;
  }
}
