.guide-container {
  max-width: 1200px;
  margin: 135px auto;
  margin-bottom: 5rem !important;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin: 140px 0 60px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-title span {
  background: var(--primary-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Steps Wrapper */
.steps-wrapper {
  display: block;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

/* Step Card */
.step-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  margin: 1.5rem 2rem;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(209, 29, 35, 0.2);
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
}

.step-card:nth-child(1) {
  animation-delay: 0.1s;
}
.step-card:nth-child(2) {
  animation-delay: 0.2s;
}
.step-card:nth-child(3) {
  animation-delay: 0.3s;
}
.step-card:nth-child(4) {
  animation-delay: 0.4s;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-color-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(209, 29, 35, 0.3);
}

.step-icon {
  font-size: 60px;
  margin-bottom: 20px;
  display: block;
}

.step-icon img {
  height: auto;
  border-radius: 10px;
}

.layer-step-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.illustrator-icon {
  width: 150px;
}

.photoshop-icon {
  width: 150px;
}

.step-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 500;
}

.step-content p {
  color: #6c757d;
  margin-bottom: 20px;
  font-size: 16px;
}

.step-content .ai {
  color: #f8a829;
}

.step-content .psd {
  color: #31a8ff;
}

.step-features li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  list-style: none;
}

.step-features li:before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  font-size: 1.5rem;
  line-height: 1;
}

.link-button {
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  background: var(--primary-color-gradient);
  color: var(--text-color-alt);
  border: var(--primary-color) solid 2px;
  transition: color 0.3s ease;
  text-align: center;
  display: block;
  margin-top: 2rem;
}

.link-button:hover {
  color: var(--primary-color);
  background: var(--background);
}

.link-button i {
  margin-right: 0.3rem;
}

/* Video Section */
.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vid-button {
  animation: fadeInUp 0.8s ease 0.6s;
  animation-fill-mode: both;
  display: inline-flex;
  justify-content: center;
  padding: 1.5rem 1.5rem;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  background: var(--background);
  color: var(--primary-color);
  border: var(--primary-color) solid 2px;
  transition: color 0.3s ease;
  margin-right: 1rem;
  text-align: center;
  gap: 0.5rem;
  font-weight: bold;
}

.vid-button:hover {
  color: var(--text-color-alt);
  background: var(--primary-color-gradient);
}

/* ! Customer Choices Section */
.choices-section {
  animation: fadeIn 0.8s ease-out;
  margin-bottom: 5rem;
}

.choices-container {
  max-width: 1200px;
  margin: 0 auto;
}

.choices-title {
  text-align: center;
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: fadeInDown 0.6s ease-out;
  position: relative;
}

.choices-title::after {
  position: absolute;
  left: 0;
  right: 0;
  margin: 10px auto 0;
  content: "";
  display: block;
  border-bottom: 4px solid var(--primary-color);
  border-radius: 100px;
  width: 80px;
  animation: expandWidth 0.8s ease-out 0.3s backwards;
}

.choices-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  margin-top: 3rem;
  animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.choices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  padding: 0 1rem;
}

.choice-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.8s ease-out;
  position: relative;
  display: flex;
  flex-direction: column;
}

.choice-card:nth-child(1) {
  animation-delay: 0.1s;
}
.choice-card:nth-child(2) {
  animation-delay: 0.2s;
}
.choice-card:nth-child(3) {
  animation-delay: 0.3s;
}

.choice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.choice-icon {
  width: 80px;
  height: auto;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.choice-icon img {
  width: 1500px;
  height: auto;
  display: block;
  object-fit: cover;
}

.choice-title {
  font-size: 1.5rem;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
}

.choice-description {
  text-align: center;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.choice-card .live-prod {
  display: block;
  text-align: center;
  background: var(--primary-color-gradient);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: color 0.3s ease;
  border: var(--primary-color) solid 2px;
}

.choice-card .live-prod:hover {
  background: var(--background);
  color: var(--primary-color);
}

.choice-card .under-dev {
  display: block;
  text-align: center;
  background: var(--background);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: color 0.3s ease;
  border: var(--primary-color) solid 2px;
  cursor: not-allowed;
}

.choice-details {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
  border: 1px solid #e0e0e0;
}

.detail-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.3s ease;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  padding: 15px;
  font-weight: 600;
  color: var(--text-color);
  background: #ffffff;
  border-right: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
}

.detail-value {
  padding: 15px;
  color: #666;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

/* FAQ Section */
/* TODO For Future Update */
.faq-section {
  animation: fadeInUp 0.8s ease 0.6s;
  animation-fill-mode: both;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--text-color);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.faq-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.faq-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.faq-question h4 {
  font-size: 18px;
  color: var(--text-color);
  margin: 0;
}

.faq-answer {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.7;
  margin-left: 47px;
}

/* Animations */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

/* Responsive Design */
@media (max-width: 1068px) {
  .choice-icon img {
    max-height: 220px;
    border-radius: 12px;
  }
}

@media (max-width: 968px) {
  .guide-container {
    margin-bottom: 1.5rem !important;
  }

  /* Choice Section */
  .choices-section {
    padding: 60px 20px;
  }

  .choices-title {
    font-size: 2rem;
  }

  .choices-subtitle {
    font-size: 1.1rem;
  }

  .choices-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .step-icon img {
    max-height: 250px;
  }

  .guide-header h1 {
    font-size: 30px;
    margin-top: 8.8rem;
  }

  .guide-header p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .link-button {
    display: block;
    margin-top: 1rem;
  }

  .vid-button {
    padding: 12px 20px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 350px;
  }

  /* Choice Section */
  .choices-section {
    padding: 50px 15px;
  }

  .choices-title {
    font-size: 1.8rem;
  }

  .choices-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .choices-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .choice-card {
    padding: 30px 20px;
  }

  .choice-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .choice-icon img {
    max-height: 200px;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2.5rem;
  }

  .choice-title {
    font-size: 1.3rem;
    margin-top: 3rem;
  }

  .choice-button {
    padding: 12px 25px;
  }

  .detail-row {
    grid-template-columns: 1fr;
  }

  .detail-label {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px;
    background: #f0f0f0;
  }

  .detail-value {
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 30px;
  }

  .hero-section p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .step-icon img {
    max-height: 180px;
  }
}

@media (max-width: 468px) {
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .illustrator-icon {
    width: 80px;
  }

  .photoshop-icon {
    width: 80px;
  }

  .video-section {
    margin-left: 1rem;
  }

  .vid-button {
    padding: 12px 18px;
    font-size: 0.7rem;
    width: 80%;
    max-width: 100%;
  }

  /* Choice Section */
  .choices-section {
    padding: 40px 10px;
  }

  .choices-title {
    font-size: 1.5rem;
  }

  .choices-subtitle {
    font-size: 0.95rem;
  }

  .choice-card {
    padding: 25px 15px;
  }

  .choice-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .detail-label,
  .detail-value {
    font-size: 0.9rem;
    padding: 10px;
  }
}
