/* ==========================================
  Modern Service Page Styles
========================================== */

:root {
  /* メインカラーパレット - より鮮やかで洗練された配色 */
  --gradient-primary: linear-gradient(135deg, #0a3d61 0%, #2980b9 100%);
  --gradient-primary-soft: linear-gradient(135deg, rgba(10, 61, 97, 0.8) 0%, rgba(41, 128, 185, 0.8) 100%);
  --gradient-accent: linear-gradient(135deg, #e74c3c 0%, #ff7675 100%);
  --gradient-dark: linear-gradient(135deg, #1e3c59 0%, #34495e 100%);
  --gradient-light: linear-gradient(135deg, #f5f7fa 0%, #f1f6fc 100%);
  --gradient-neutral: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
  
  --color-primary: #0a3d61;
  --color-primary-light: #3498db;
  --color-primary-dark: #053052;
  --color-accent: #e74c3c;
  --color-accent-light: #ff7675;
  --color-secondary: #1e3c59;
  --color-text-dark: #2c3e50;
  --color-text-medium: #34495e;
  --color-text-light: #7f8c8d;
  --color-background: #f9fafb;
  --color-background-alt: #ecf0f1;
  
  /* シャドウスタイル - より立体的で洗練された影 */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.07);
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-focus: 0 0 0 3px rgba(41, 128, 185, 0.3);
  
  /* 境界線の丸み */
  --border-radius-sm: 8px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;
  
  /* トランジション速度 */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ヒーローセクション */
.hero-service {
  position: relative;
  height: 70vh;
  min-height: 500px;
  color: #fff;
  overflow: hidden;
  margin-top: 80px;
}

.hero-service__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-service__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  /* Removed scale transform and hover effect for performance */
}

.hero-service__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(75deg, 
    rgba(10, 61, 97, 0.95) 0%, 
    rgba(41, 128, 185, 0.85) 50%, 
    rgba(41, 128, 185, 0.75) 100%);
  z-index: 1;
  overflow: hidden;
}

/* Removed floating animation pseudo elements for performance */

.hero-service__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-service__subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-service__title {
  font-size: 7rem;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition-bounce), transform 0.8s var(--transition-bounce);
}

.hero-service__title::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 80px;
  height: 5px;
  background-color: var(--color-accent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
}

.hero-service__description {
  max-width: 600px;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-service__scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease 0.6s;
}

/* ロード後のアニメーション */
.hero-service.loaded .hero-service__subtitle,
.hero-service.loaded .hero-service__title,
.hero-service.loaded .hero-service__description {
  opacity: 1;
  transform: translateY(0);
}

.hero-service.loaded .hero-service__title::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-service.loaded .hero-service__scroll {
  opacity: 1;
}

.hero-service__scroll-text {
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-service__scroll-line {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.hero-service__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: scrollLine 2s ease infinite;
}

/* 導入セクション */
.service-intro {
  position: relative;
  padding: 12rem 0;
  overflow: hidden;
  background-color: var(--color-background);
}

/* Removed floating background elements for performance */

.service-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.service-intro__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.service-intro__content.is-visible,
.service-intro__content.is-visible-optimized {
  opacity: 1;
  transform: translateY(0);
}

.service-intro__text {
  font-size: 2.5rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 5rem;
  position: relative;
  padding-bottom: 3rem;
  font-weight: 500;
}

.service-intro__text span {
  color: var(--color-primary);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.service-intro__text span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-intro__content.is-visible .service-intro__text span::after {
  transform: scaleX(1);
  transition-delay: 0.5s;
}

.service-intro__text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.service-intro__content.is-visible .service-intro__text::after {
  opacity: 1;
  transition-delay: 0.8s;
}

/* サービスカード */
.service-cards {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.service-card {
  margin-bottom: 10rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Removed service card pseudo-element animations for performance */

.service-card.is-visible,
.service-card.is-visible-optimized {
  opacity: 1;
  transform: translateY(0);
}

.service-card__header {
  position: relative;
  margin-bottom: 6rem;
  max-width: 800px;
}

.service-card__tag {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.service-card__title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  text-shadow: 0 5px 10px rgba(15, 76, 129, 0.07);
  letter-spacing: -0.5px;
  transition: all var(--transition);
}

/* Removed shimmer animation from titles for performance */

.service-card__subtitle {
  font-size: 2.2rem;
  color: var(--color-text-medium);
  margin-bottom: 2.5rem;
  font-weight: 500;
  max-width: 90%;
  transition: all var(--transition);
}

.service-card.is-visible .service-card__subtitle {
  transform: translateX(0);
  opacity: 1;
}

.service-card__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-card:nth-child(even) .service-card__content {
  direction: rtl;
}

.service-card:nth-child(even) .service-card__text {
  direction: ltr;
}

.service-card__image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-bounce);
  z-index: 1;
}

.service-card__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(10, 61, 97, 0) 0%, 
    rgba(10, 61, 97, 0.8) 100%);
  opacity: 0.5;
  z-index: 1;
  transition: all var(--transition);
}

/* Removed shimmer after effect for performance */

.service-card__image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.service-card__image:hover::before {
  opacity: 0.7;
}

.service-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: var(--transition);
  filter: brightness(0.95);
}

.service-card__image:hover img {
  transform: scale(1.02);
  filter: brightness(1.02);
}

.service-card__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-card__description {
  font-size: 1.7rem;
  line-height: 1.8;
  color: #555;
}

.service-card__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.service-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card__feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 76, 129, 0.03);
  z-index: -1;
  border-radius: var(--border-radius);
  /* Simplified - static background */
}

.service-card__feature:hover {
  transform: translateY(-2px);
  transition: var(--transition);
}

.service-card__feature:hover::before {
  background-color: rgba(15, 76, 129, 0.06);
}

.service-card__feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #3a7bd5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(15, 76, 129, 0.2);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Removed shimmer effect from feature icons for performance */

.service-card__feature:hover .service-card__feature-icon {
  transform: scale(1.05);
  transition: var(--transition);
}

.service-card__feature-text {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  color: #333;
  transition: color var(--transition);
}

.service-card__feature:hover .service-card__feature-text {
  color: var(--color-primary);
}

.service-card__cta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
}

/* Removed button shimmer effect for performance */
.btn-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: -2;
  transition: width var(--transition);
}

.btn-modern--primary {
  background: linear-gradient(45deg, var(--color-primary), #3a7bd5);
  color: #fff;
  box-shadow: 0 4px 10px rgba(15, 76, 129, 0.3);
}

.btn-modern--primary::after {
  background: linear-gradient(45deg, var(--color-accent), #f39c12);
}

.btn-modern--primary:hover {
  box-shadow: 0 4px 12px rgba(15, 76, 129, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.btn-modern--outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  transition: all var(--transition);
}

.btn-modern--outline::after {
  background: var(--color-primary);
}

.btn-modern--outline:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 76, 129, 0.2);
  border-color: transparent;
}

.btn-modern:hover::before {
  opacity: 1;
}

.btn-modern:hover::after {
  width: 100%;
}

.btn-modern:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.2s;
}

.btn-modern i {
  position: relative;
  transition: transform var(--transition-fast);
}

.btn-modern:hover i {
  transform: translateX(4px);
  transition: var(--transition);
}

.btn-modern::after,
.btn-modern i,
.btn-modern:hover,
.btn-modern:active {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 詳細セクション */
.service-detail {
  background-color: rgba(255, 255, 255, 0.9);
  /* Simplified backdrop-filter for better performance */
  border-radius: var(--border-radius-lg);
  padding: 4.5rem;
  margin-top: 3.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.service-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  z-index: -1;
}

.service-detail::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--gradient-primary);
  filter: blur(80px);
  opacity: 0.05;
  border-radius: 50%;
  z-index: -2;
  transition: all var(--transition-slow);
}

.service-detail:nth-child(1)::after {
  top: -100px;
  right: -100px;
}

.service-detail:nth-child(2)::after {
  bottom: -100px;
  left: -100px;
}

.service-detail:nth-child(3)::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-detail:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.service-detail__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 2rem;
  transition: all var(--transition);
}

.service-detail__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 10px;
  transition: all var(--transition);
}

.service-detail:hover .service-detail__title {
  color: var(--color-primary);
  transform: translateX(2px);
}

.service-detail__content {
  font-size: 1.7rem;
  line-height: 1.9;
  color: var(--color-text-medium);
  transition: all var(--transition);
}

.service-detail__content p {
  margin-bottom: 1.8rem;
  transition: all var(--transition);
}

.service-detail__content p:last-child {
  margin-bottom: 0;
}

.service-detail:hover .service-detail__content {
  color: var(--color-text-dark);
}

/* CTA セクション */
.cta-service {
  position: relative;
  padding: 12rem 0;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
  color: #fff;
  overflow: hidden;
  margin-top: 8rem;
}

.cta-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero.jpg') no-repeat center center / cover;
  opacity: 0.1;
  mix-blend-mode: overlay;
  /* Removed pulse animation for performance */
}

.cta-service::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
}

.cta-service__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.cta-service__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

/* Removed floating decorative elements for performance */

.cta-service__title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
}

.cta-service__title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}

.cta-service__text {
  font-size: 2rem;
  line-height: 1.7;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-service__btn {
  position: relative;
  display: inline-block;
}

.cta-service__btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 3s infinite;
}

.cta-service__btn .btn-modern {
  background-color: #fff;
  color: var(--color-primary);
  font-size: 1.8rem;
  padding: 1.6rem 4.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-bounce);
}

.cta-service__btn .btn-modern::after {
  background: var(--gradient-accent);
}

.cta-service__btn .btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.cta-service__btn .btn-modern:hover i {
  color: #fff;
}

/* アニメーションキーフレーム */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Removed pulse animation for performance */

/* Removed float animation for performance */

/* Removed scrollLine animation for performance */

/* Removed shimmer animation for performance */

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* メディアクエリ */
@media (max-width: 991px) {
  .hero-service__title {
    font-size: 5rem;
  }
  
  .hero-service__description {
    font-size: 1.6rem;
  }
  
  .service-intro__text {
    font-size: 1.8rem;
  }
  
  .service-card__title {
    font-size: 3.5rem;
  }
  
  .service-card__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-card:nth-child(even) .service-card__content {
    direction: ltr;
  }
}

@media (max-width: 767px) {
  .hero-service {
    min-height: 400px;
  }
  
  .hero-service__title {
    font-size: 3.5rem;
  }
  
  .hero-service__description {
    font-size: 1.5rem;
  }
  
  .service-intro__text {
    font-size: 1.6rem;
  }
  
  .service-card__title {
    font-size: 3rem;
  }
  
  .service-card__subtitle {
    font-size: 1.8rem;
  }
  
  .service-card__features {
    grid-template-columns: 1fr;
  }
  
  .service-detail {
    padding: 3rem;
  }
  
  .service-detail__title {
    font-size: 2.2rem;
  }
  
  .cta-service__title {
    font-size: 3rem;
  }
}
/* 会社基本情報カードのスタイル */
.service-card__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: var(--border-radius);
  transition: all var(--transition);
}

.service-card__info-item:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card__info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.3rem;
}

.service-card__info-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card__info-text p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--color-text-dark);
  font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .service-card__info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card__info-item {
    padding: 1rem;
  }
  
  .service-card__info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .service-card__info-text h4 {
    font-size: 0.85rem;
  }
  
  .service-card__info-text p {
    font-size: 1rem;
  }
}

/* =============================================
   PERFORMANCE OPTIMIZATIONS FOR SOCIAL.HTML
============================================= */

/* Reduced motion for better performance */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Layout shift prevention */
.service-card__image {
  min-height: 300px;
  background-color: #f5f5f5;
}

.service-card__image img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.service-card__image img.loaded {
  opacity: 1;
}

/* Performance note: Heavy animations, parallax effects, 
   shimmer animations, and floating elements have been 
   removed or simplified for better scroll performance */

/* Optimized hover animations for better performance */
.icon-hover,
.icon-hover-optimized {
    transform: scale(1.05) !important;
    transition: transform 0.2s ease !important;
}

.span-hover,
.span-hover-optimized {
    color: var(--color-primary-light) !important;
    transition: color 0.2s ease !important;
}

/* Optimized classes for new JS */
.is-visible-optimized {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.4s ease, transform 0.4s ease !important;
}
