/* ========== SERVICE SHOWCASE ========== */
.service-showcase {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* Hero Card */
.showcase-hero {
  margin-bottom: 40px;
}

.showcase-hero-inner {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(8, 8, 8, 1) 100%);
  border-radius: 24px;
  padding: 60px 70px;
  border: 1px solid rgba(201, 169, 110, 0.12);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-hero-inner:hover {
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow: 
    0 50px 120px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(201, 169, 110, 0.08);
}

.showcase-hero-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(201, 169, 110, 0.8) 0%, 
    rgba(201, 169, 110, 0.3) 50%,
    rgba(201, 169, 110, 0.1) 100%);
  border-radius: 0 4px 4px 0;
}

.showcase-hero-border {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(201, 169, 110, 0.06);
  border-radius: 12px;
  pointer-events: none;
}

.showcase-hero-content {
  position: relative;
  max-width: 800px;
  padding-left: 20px;
}

.showcase-index {
  font-family: 'Times New Roman', serif;
  font-size: 100px;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.06);
  line-height: 1;
  margin-bottom: -20px;
  transition: all 0.5s ease;
}

.showcase-hero:hover .showcase-index {
  color: rgba(201, 169, 110, 0.1);
  transform: translateX(10px);
}

.showcase-title {
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #C9A96E;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.showcase-tagline {
  font-size: 14px;
  color: rgba(201, 169, 110, 0.7);
  letter-spacing: 4px;
  margin-bottom: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.showcase-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2;
  letter-spacing: 0.5px;
  max-width: 700px;
}

.showcase-arrow {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 169, 110, 0.4);
  transition: all 0.4s ease;
}

.showcase-hero:hover .showcase-arrow {
  border-color: rgba(201, 169, 110, 0.5);
  color: #C9A96E;
  transform: translateY(-50%) translateX(5px);
}

.showcase-arrow svg {
  width: 24px;
  height: 24px;
}

/* Grid Cards */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.showcase-card {
  position: relative;
}

.showcase-card-inner {
  position: relative;
  background: linear-gradient(145deg, rgba(12, 12, 12, 0.95) 0%, rgba(6, 6, 6, 1) 100%);
  border-radius: 20px;
  padding: 40px 44px;
  border: 1px solid rgba(201, 169, 110, 0.06);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 280px;
}

.showcase-card:hover .showcase-card-inner {
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: 
    0 35px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(201, 169, 110, 0.06);
  transform: translateY(-5px);
}

.showcase-card-index {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Times New Roman', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.05);
  line-height: 1;
  transition: all 0.5s ease;
}

.showcase-card:hover .showcase-card-index {
  color: rgba(201, 169, 110, 0.1);
  transform: translateY(-3px);
}

.showcase-card-title {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
  transition: all 0.4s ease;
  max-width: 90%;
}

.showcase-card:hover .showcase-card-title {
  color: #C9A96E;
}

.showcase-card-tagline {
  font-size: 12px;
  color: rgba(201, 169, 110, 0.7);
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.showcase-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.showcase-badge {
  position: absolute;
  top: 20px;
  left: 24px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 20px;
  font-size: 10px;
  color: #C9A96E;
  letter-spacing: 2px;
  font-weight: 500;
}

.showcase-card.featured .showcase-card-inner {
  background: linear-gradient(145deg, rgba(22, 18, 12, 0.98) 0%, rgba(12, 10, 6, 1) 100%);
  border-color: rgba(201, 169, 110, 0.12);
}

.showcase-card.featured .showcase-card-title {
  color: #C9A96E;
}

.showcase-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.showcase-activities span {
  font-size: 11px;
  color: rgba(201, 169, 110, 0.5);
  letter-spacing: 1px;
  padding: 4px 12px;
  background: rgba(201, 169, 110, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.showcase-card:hover .showcase-activities span {
  color: rgba(201, 169, 110, 0.8);
  background: rgba(201, 169, 110, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .showcase-hero-inner {
    padding: 48px 52px;
  }
  
  .showcase-title {
    font-size: 30px;
  }
  
  .showcase-index {
    font-size: 80px;
  }
  
  .showcase-arrow {
    right: 40px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-hero-inner {
    padding: 36px 32px;
  }
  
  .showcase-title {
    font-size: 24px;
  }
  
  .showcase-index {
    font-size: 60px;
  }
  
  .showcase-desc {
    font-size: 14px;
  }
  
  .showcase-arrow {
    display: none;
  }
  
  .showcase-card-inner {
    padding: 32px 28px;
    min-height: 240px;
  }
  
  .showcase-card-title {
    font-size: 18px;
  }
}
