/* ===== STORYTELLING FLOW SECTION ===== */
.story-section {
  position: relative;
  padding: 100px 0 80px;
  background: var(--white);
  overflow: hidden;
}

/* Story Intro */
.story-intro {
  text-align: center;
  margin-bottom: 80px;
}

.story-tag {
  display: inline-block;
  padding: 10px 28px;
  background: rgba(201, 164, 86, 0.12);
  border: 1px solid rgba(201, 164, 86, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.story-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 24px;
}

.story-divider {
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 0 auto 50px;
  border-radius: 2px;
}

/* Story Gallery in Intro */
.story-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.story-gallery .gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-gallery .gallery-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .story-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Story Item - Alternating Layout */
.story-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.story-item:last-of-type {
  margin-bottom: 80px;
}

/* Reverse layout for alternating effect */
.story-item.story-reverse {
  direction: rtl;
}

.story-item.story-reverse>* {
  direction: ltr;
}

@media (max-width: 992px) {
  .story-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-item.story-reverse {
    direction: ltr;
  }
}

/* Story Visual */
.story-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.story-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-visual:hover img {
  transform: scale(1.05);
}

.story-number {
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(201, 164, 86, 0.15);
  line-height: 1;
  z-index: -1;
}

.story-reverse .story-number {
  left: auto;
  right: -20px;
}

/* Story Content */
.story-content {
  padding: 20px 0;
}

.story-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(201, 164, 86, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.story-item:hover .story-icon {
  background: var(--gradient-gold);
}

.story-icon i {
  font-size: 2rem;
  color: var(--gold-dark);
  transition: var(--transition);
}

.story-item:hover .story-icon i {
  color: var(--white);
}

.story-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.story-content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 28px;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.story-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.story-link:hover {
  color: var(--gold);
}

.story-link:hover::after {
  width: 100%;
}

.story-link i {
  transition: var(--transition);
}

.story-link:hover i {
  transform: translateX(6px);
}

/* Final CTA Section */
.story-cta {
  margin-top: 40px;
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.story-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A456' fill-opacity='0.08'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--gradient-gold);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(201, 164, 86, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 164, 86, 0.5);
  color: var(--white);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: var(--transition);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .story-section {
    padding: 70px 0 50px;
  }

  .story-intro {
    margin-bottom: 50px;
  }

  .story-heading {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }

  .story-item {
    gap: 30px;
    margin-bottom: 60px;
  }

  .story-visual img {
    height: 320px;
  }

  .story-number {
    font-size: 6rem;
    top: -15px;
    left: -15px;
  }

  .story-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .story-icon i {
    font-size: 1.6rem;
  }

  .story-content h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  .story-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .story-cta {
    padding: 60px 40px;
    margin-top: 30px;
  }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
  .story-section {
    padding: 50px 0 40px;
  }

  .story-intro {
    margin-bottom: 40px;
  }

  .story-tag {
    padding: 8px 20px;
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .story-heading {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .story-divider {
    width: 60px;
    margin-bottom: 30px;
  }

  .story-gallery {
    gap: 12px;
  }

  .story-item {
    gap: 24px;
    margin-bottom: 50px;
  }

  .story-visual {
    border-radius: 16px;
  }

  .story-visual img {
    height: 220px;
  }

  .story-number {
    font-size: 4rem;
    top: -8px;
    left: -8px;
  }

  .story-reverse .story-number {
    right: -8px;
  }

  .story-content {
    padding: 0 5px;
  }

  .story-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .story-icon i {
    font-size: 1.4rem;
  }

  .story-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .story-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .story-link {
    font-size: 0.9rem;
  }

  /* CTA Mobile */
  .story-cta {
    padding: 40px 24px;
    margin-top: 20px;
    border-radius: 24px;
  }

  .cta-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .cta-poster {
    max-width: 220px;
    margin: 24px auto;
  }

  .btn-cta-primary {
    padding: 14px 32px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
}

/* Responsive - Extra Small */
@media (max-width: 360px) {
  .story-heading {
    font-size: 1.2rem;
  }

  .story-visual img {
    height: 180px;
  }

  .story-content h3 {
    font-size: 1.2rem;
  }

  .story-content p {
    font-size: 0.85rem;
  }

  .story-cta {
    padding: 32px 20px;
  }

  .cta-content h3 {
    font-size: 1.2rem;
  }

  .cta-poster {
    max-width: 180px;
  }
}