/* ===============================
SERVICE HIGHLIGHTS SECTION - Modern Redesign
=============================== */

.section--service-highlights {
  padding: 60px 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.2s both;
}

.section--service-highlights .section-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
  position: relative;
}

.section--service-highlights .section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Montserrat', sans-serif;
}

.section--service-highlights .text-accent {
  color: var(--brand-red);
}

.section--service-highlights .section-lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.9;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out both;
  animation-delay: var(--animation-delay, 0.3s);
}

.service-card:nth-child(1) { --animation-delay: 0.3s; }
.service-card:nth-child(2) { --animation-delay: 0.4s; }
.service-card:nth-child(3) { --animation-delay: 0.5s; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), #ff6b6b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Service Icon */
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(175, 45, 44, 0.1), rgba(175, 45, 44, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.service-icon svg {
  color: var(--brand-red);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--brand-red);
  transform: rotate(-5deg) scale(1.1);
}

.service-card:hover .service-icon svg {
  color: white;
}

/* Service Content */
.service-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.service-description {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Service Features */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.service-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #555;
  font-size: 0.95rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: rgba(175, 45, 44, 0.1);
  color: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Service Link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transition: width 0.3s ease;
}

.service-link:hover::after {
  width: calc(100% - 24px);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* Responsive Design */

/* Remove old styles */
.highlight-grid,
.highlight-card,
.highlight-image,
.highlight-overlay,
.infographic-modal,
.circle-icon,
.accent-bar {
  display: none !important;
}