/* ==========================================================================
   FIXILA - CUSTOM BUILDS PAGE STYLESHEET
   Save as: /css/custom-builds.css
   Used on: custom-builds.html ONLY
   ========================================================================== */

/* ==========================================================================
   HERO VARIANT
   ========================================================================== */

/* ==========================================================================
   BUILDS SHOWCASE SECTION
   ========================================================================== */
.builds-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #ffffff 0%, #fff7ed 100%);
}

.builds-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.build-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.build-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.build-card.featured {
  border-color: #ea580c;
  transform: scale(1.05);
}

.build-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.build-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7c2d12 0%, #ea580c 100%);
  color: white;
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.build-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin: 1.5rem 0 1rem;
  text-align: center;
  font-weight: 700;
}

.build-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ea580c;
  text-align: center;
  margin-bottom: 1.5rem;
}

.build-specs {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.build-specs li {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  color: #475569;
  border-bottom: 1px solid #f0f0f0;
}

.build-specs li:last-child {
  border-bottom: none;
}

.build-specs strong {
  color: #1e293b;
  font-weight: 700;
}

.build-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #7c2d12 0%, #ea580c 100%);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 1.5rem;
}

.build-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
}

/* ==========================================================================
   RESPONSIVE (Custom Builds Page Specific)
   ========================================================================== */
@media (max-width: 768px) {
  .hero-builds h1 {
    font-size: 2.2rem;
  }

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

  .build-card.featured {
    transform: scale(1);
  }

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

@media (max-width: 480px) {
  .hero-builds h1 {
    font-size: 1.9rem;
  }

  .build-price {
    font-size: 2rem;
  }
}
/* ==========================================================================
   FIXILA - CUSTOM BUILDS PAGE STYLESHEET
   Save as: /css/custom-builds.css
   Used on: custom-builds.html ONLY
   ========================================================================== */

/* ==========================================================================
   HERO VARIANT
   ========================================================================== */
.hero-builds {
  background: linear-gradient(135deg, #7c2d12 0%, #c2410c 50%, #ea580c 100%);
  position: relative;
  overflow: hidden;
}

.hero-builds::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.03) 30%, rgba(255,255,255,0.03) 50%, transparent 50%, transparent 80%, rgba(255,255,255,0.03) 80%),
    radial-gradient(circle at 30% 40%, rgba(234, 88, 12, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(234, 88, 12, 0.4) 0%, transparent 50%);
  background-size: 80px 80px, 100% 100%, 100% 100%;
  opacity: 0.5;
}

/* ==========================================================================
   BUILDS SHOWCASE SECTION
   ========================================================================== */
.builds-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #ffffff 0%, #fff7ed 100%);
}

.builds-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.build-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.build-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.build-card.featured {
  border-color: #ea580c;
  transform: scale(1.05);
}

.build-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.build-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7c2d12 0%, #ea580c 100%);
  color: white;
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.build-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin: 1.5rem 0 1rem;
  text-align: center;
  font-weight: 700;
}

.build-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ea580c;
  text-align: center;
  margin-bottom: 1.5rem;
}

.build-specs {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.build-specs li {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  color: #475569;
  border-bottom: 1px solid #f0f0f0;
}

.build-specs li:last-child {
  border-bottom: none;
}

.build-specs strong {
  color: #1e293b;
  font-weight: 700;
}

.build-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #7c2d12 0%, #ea580c 100%);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 1.5rem;
}

.build-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
}

/* ==========================================================================
   FAQ SECTION (CUSTOM BUILDS)
   ========================================================================== */
.faq-section {
  padding: 6rem 2rem;
  background: #f8fafc;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.faq-answer {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE (Custom Builds Page Specific)
   ========================================================================== */
@media (max-width: 768px) {
  .hero-builds h1 {
    font-size: 2.2rem;
  }

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

  .build-card.featured {
    transform: scale(1);
  }

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

@media (max-width: 480px) {
  .hero-builds h1 {
    font-size: 1.9rem;
  }

  .build-price {
    font-size: 2rem;
  }
}