/* ===== INTRODUCTION SECTION — Premium ===== */
.intro-section {
  background: var(--color-dark);
  position: relative;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 48, 0.2), transparent);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.intro-card {
  background: linear-gradient(145deg, rgba(45, 45, 45, 0.6), rgba(26, 26, 26, 0.8));
  border-radius: var(--radius-lg);
  padding: 50px 35px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(212, 160, 48, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.intro-card:hover::before {
  opacity: 1;
}

.intro-card:hover {
  transform: translateY(-12px);
  border-color: rgba(212, 160, 48, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 160, 48, 0.05);
}

.intro-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(212, 160, 48, 0.12), rgba(212, 160, 48, 0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 48, 0.15);
  transition: var(--transition);
}

.intro-card:hover .intro-card-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-color: var(--color-primary);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(212, 160, 48, 0.3);
}

.intro-card-icon svg {
  width: 34px;
  height: 34px;
  color: var(--color-primary);
  transition: var(--transition);
}

.intro-card:hover .intro-card-icon svg {
  color: var(--color-dark);
}

.intro-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.intro-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== WHY CHOOSE US — Premium ===== */
.why-section {
  background: var(--color-darker);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 160, 48, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  position: relative;
  padding: 45px 28px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(45, 45, 45, 0.5), rgba(20, 20, 20, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: var(--transition);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(212, 160, 48, 0.15);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  background: linear-gradient(135deg, rgba(212, 160, 48, 0.2), rgba(212, 160, 48, 0.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1;
}

.why-card h4 {
  margin-bottom: 14px;
  font-size: 1.15rem;
  font-weight: 600;
}

.why-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== INDUSTRIES WE SERVE — Premium ===== */
.industries-section {
  background: var(--color-dark);
  position: relative;
}

.industries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 48, 0.15), transparent);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.industry-card {
  background: linear-gradient(145deg, rgba(45, 45, 45, 0.5), rgba(20, 20, 20, 0.7));
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.industry-card:hover::after {
  transform: scaleX(1);
}

.industry-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 160, 48, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.industry-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, rgba(212, 160, 48, 0.1), rgba(212, 160, 48, 0.03));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 48, 0.12);
  transition: var(--transition);
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-color: var(--color-primary);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(212, 160, 48, 0.3);
}

.industry-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  transition: var(--transition);
}

.industry-card:hover .industry-icon svg {
  color: var(--color-dark);
}

.industry-card h4 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 600;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== FEATURED PRODUCTS — Premium ===== */
.products-section {
  background: var(--color-darker);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.product-card {
  background: linear-gradient(160deg, rgba(45, 45, 45, 0.6), rgba(15, 15, 15, 0.9));
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(212, 160, 48, 0.04) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 160, 48, 0.15);
  border-color: rgba(212, 160, 48, 0.2);
}

.product-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.8), transparent);
  z-index: 1;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card-image img {
  transform: scale(1.12);
}

.product-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(212, 160, 48, 0.3);
}

.product-card-body {
  padding: 35px 30px;
  position: relative;
  z-index: 1;
}

.product-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.product-card-body p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

.product-card-footer {
  display: flex;
  gap: 12px;
  align-items: center;
}

.product-card-footer .btn {
  padding: 12px 24px;
  font-size: 0.82rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.product-card-footer .btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-dark);
  box-shadow: 0 4px 15px rgba(212, 160, 48, 0.25);
}

.product-card-footer .btn-primary:hover {
  box-shadow: 0 8px 25px rgba(212, 160, 48, 0.4);
  transform: translateY(-2px);
}

.product-card-footer .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.product-card-footer .btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(212, 160, 48, 0.05);
}

/* ===== STATS SECTION — Premium ===== */
.stats-section {
  background: linear-gradient(135deg, rgba(92, 61, 30, 0.3), rgba(26, 26, 26, 0.95));
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/logo.jpg') center/150px no-repeat;
  opacity: 0.02;
}

.stats-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 48, 0.2), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 160, 48, 0.15), transparent);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* ===== TESTIMONIALS — Premium ===== */
.testimonials-section {
  background: var(--color-dark);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(160deg, rgba(45, 45, 45, 0.5), rgba(20, 20, 20, 0.8));
  border-radius: var(--radius-lg);
  padding: 45px 35px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  border-radius: 2px;
}

.testimonial-card:hover {
  border-color: rgba(212, 160, 48, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
  font-size: 4rem;
  background: linear-gradient(135deg, var(--color-primary), rgba(212, 160, 48, 0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 15px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.98rem;
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.9;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(212, 160, 48, 0.25);
}

.testimonial-info h5 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-info span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* ===== CTA SECTION — Premium ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
  color: var(--color-dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(92, 61, 30, 0.9);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  background: var(--color-dark);
  color: var(--color-primary);
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-section .btn:hover {
  background: var(--color-darker);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ===== PROCESS SECTION — Premium ===== */
.process-section {
  background: var(--color-dark);
  position: relative;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), rgba(212, 160, 48, 0.1));
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-charcoal), var(--color-dark));
  border: 3px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 700;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(212, 160, 48, 0.15);
  transition: var(--transition);
}

.process-step:hover .process-step-number {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-dark);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(212, 160, 48, 0.3);
}

.process-step h4 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 600;
}

.process-step p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .intro-grid,
  .testimonials-grid,
  .products-grid,
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .stats-grid,
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
    display: none;
  }

  .stat-item::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .intro-grid,
  .why-grid,
  .stats-grid,
  .testimonials-grid,
  .products-grid,
  .process-timeline,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 45px;
  }

  .stat-number {
    font-size: 3rem;
  }
}
/* ===== PRODUCT CARD RESPONSIVE ===== */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .intro-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-timeline { flex-direction: column; gap: 24px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 380px) {
  .industries-grid { grid-template-columns: 1fr; }
}

/* Product card footer fix — prevent overflow on small screens */
.product-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-card-footer .btn {
  flex: 1 1 120px;
  min-width: 0;
  text-align: center;
  justify-content: center;
  padding: 12px 16px;
  font-size: 0.78rem;
}

/* ===== PRODUCT CARD ACTIONS (wishlist row under footer) ===== */
.product-card-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

/* ─── PREMIUM SECTION ENHANCEMENTS ───────────────────── */

/* Why section background */
.why-section {
  background: linear-gradient(180deg, var(--color-dark) 0%, rgba(26,26,26,0.5) 50%, var(--color-dark) 100%);
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(212,160,48,0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Process step number pulse */
.process-step-number {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}
.process-step:hover .process-step-number {
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(212,160,48,0.35);
}

/* Testimonials section */
.testimonials-section {
  background: var(--color-charcoal);
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,160,48,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Testimonial stars */
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.testimonial-stars svg { color: var(--color-primary); }

/* Stats section */
.stats-section {
  background: linear-gradient(135deg, var(--color-darker) 0%, var(--color-charcoal) 100%);
  border-top: 1px solid rgba(212,160,48,0.06);
  border-bottom: 1px solid rgba(212,160,48,0.06);
}
