@charset "UTF-8";
/* 
 * Manzanillo Motos Acuáticas統合スタイルシート
 * 水上モーターボート・テーマ
 */
/* CSSファイルの先頭に追加するコード */
:root {
  /* すでに定義されているカラーパレットがあればそれを使用 */
  /* カラーパレット - 水と海をイメージ */
  --primary-color: #0078B6;      /* メインの青色 */
  --secondary-color: #00B4DB;    /* 明るい青色 */
  --accent-color: #FFD700;       /* 金色のアクセント */
  --light-blue: #E0F7FA;         /* 薄い背景色 */
  --dark-blue: #005073;          /* 濃い青色 */
  --text-dark: #333333;          /* 暗いテキスト */
  --text-light: #FFFFFF;         /* 明るいテキスト */
  --bg-light: #F5F5F5;           /* 明るい背景 */
  --bg-gradient: linear-gradient(to right, #00B4DB, #0083B0); /* グラデーション */
}

/* ナビゲーションバーのスタイル上書き */
#navbar {
  background: var(--bg-gradient) !important;
}

#navbar.scrolled {
  background: var(--bg-gradient) !important;
  padding: 0.3rem 0;
}

/* 波アニメーションのスタイル（JavaScriptでも設定していますが、念のため） */
.wave-container {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 30px;
  overflow: hidden;
  z-index: -1;
}

#navbar.scrolled .wave-container {
  bottom: -15px;
  height: 15px;
  transition: all 0.3s ease;
}

.wave {
  position: absolute;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
  background-position: 0 bottom;
  transform-origin: center bottom;
}

}
/* 波コンテナの修正 */
.wave-container {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 30px;
  overflow: hidden;
  z-index: -1;
  background-color: transparent; /* 背景を透明に */
}

/* 波の基本スタイル修正 */
.wave {
  position: absolute;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
  background-position: 0 bottom;
  transform-origin: center bottom;
  margin-bottom: -1px; /* 下部のギャップを埋める */
}

/* 波1 - 不透明度を上げる */
.wave-1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%230078B6' opacity='.9'%3E%3C/path%3E%3C/svg%3E");
  background-size: 50% 100%;
  bottom: -1px; /* 下部のギャップを埋める */
  animation: wave-animation-1 15s linear infinite;
  z-index: 3;
  opacity: 1 !important; /* 完全に不透明に */
}

/* 波2 - 不透明度を上げる */
.wave-2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%230083B0' opacity='.95'%3E%3C/path%3E%3C/svg%3E");
  background-size: 50% 100%;
  bottom: -1px;
  animation: wave-animation-2 10s linear infinite;
  z-index: 2;
  opacity: 1 !important;
}

/* 波3 - 不透明度を上げる */
.wave-3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%230083B0' opacity='1'%3E%3C/path%3E%3C/svg%3E");
  background-size: 50% 100%;
  bottom: -1px; /* 下部のギャップを埋める */
  animation: wave-animation-3 7s linear infinite;
  z-index: 1;
  opacity: 1 !important; /* 完全に不透明に */
}
.wave-container{
margin-bottom: 4px;
}
@keyframes wave-animation-1 {
  0% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(-25%) scaleY(0.9); }
  100% { transform: translateX(-50%) scaleY(1); }
}

@keyframes wave-animation-2 {
  0% { transform: translateX(0) scaleY(0.9); }
  50% { transform: translateX(-25%) scaleY(1.1); }
  100% { transform: translateX(-50%) scaleY(0.9); }
}

@keyframes wave-animation-3 {
  0% { transform: translateX(0) scaleY(1.1); }
  50% { transform: translateX(-25%) scaleY(0.8); }
  100% { transform: translateX(-50%) scaleY(1.1); }
}

/* スマホ表示時の調整 */
@media screen and (max-width: 768px) {
  .wave-container {
    bottom: -20px;
    height: 20px;
  }
  
  #navbar.scrolled .wave-container {
    bottom: -10px;
    height: 10px;
  }
}
/* リセットとベーススタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* カラーパレット - 水と海をイメージ */
  --primary-color: #0078B6;      /* メインの青色 */
  --secondary-color: #00B4DB;    /* 明るい青色 */
  --accent-color: #FFD700;       /* 金色のアクセント */
  --light-blue: #E0F7FA;         /* 薄い背景色 */
  --dark-blue: #005073;          /* 濃い青色 */
  --text-dark: #333333;          /* 暗いテキスト */
  --text-light: #FFFFFF;         /* 明るいテキスト */
  --bg-light: #F5F5F5;           /* 明るい背景 */
  --bg-gradient: linear-gradient(to right, #00B4DB, #0083B0); /* グラデーション */
  
}

html, body {
  height: 100%;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 16px !important;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* ヘッダーとナビゲーション */
#navbar {
  background: var(--bg-gradient);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 0;
  min-height: 4rem;
  max-height: 6rem;
  transition: all 0.3s ease;
}

#navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* デフォルト（モバイル向け）のスタイル */
.container-item_l {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PC向けのスタイル */
@media screen and (min-width: 1024px) {
  .container-item_l {
    flex: 0 0 25%;
    justify-content: flex-start;
  }
  
  .container-item_r {
    width: 75% !important;
  }
}
.container-item_r {
  flex: 1;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-item {
  color: var(--text-light);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-item img {
  max-height: 3.5rem;
  margin-right: 1rem;
  transition: transform 0.3s ease;
}

.navbar-item img:hover {
  transform: scale(1.05);
}

.Seadoo01 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  margin-left: 0.5rem;
}

.navbar-start {
  width: 100%;
}

.moto {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  width: 100%;
}

.moto li {
  margin: 0 1rem;
}

.moto li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.moto li a:hover {
  color: var(--accent-color);
}

.moto li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent-color);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.moto li a:hover::after {
  width: 70%;
}

/* ハンバーガーメニュー（モバイル用） */
.navbar-burger {
  display: none;
  cursor: pointer;
  color: var(--text-light);
  background: none;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem;
}

.navbar-burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ヒーローセクション */
/* 通常のデスクトップ向け */
#main {
  background-size: cover;
  background-position: center top; 
  position: relative;
  padding-top: 6rem;
  height: 70vh; 
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
}

/* モバイル向けの調整 */
@media screen and (max-width: 768px) {
  #main {
    background-size:cover !important;
        background-position: center 22vw;
    height: 60vh;
    min-height: 450px;
  }
}

/* 小さいモバイル画面向け */
@media screen and (max-width: 480px) {
  #main {
    background-size: 200% auto; /* より小さい画面ではさらに拡大 */
    height: 50vh;
    min-height: 400px;
  }
}

#main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

#main .top_rl {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 0;
}

#main h2.Seadoo03 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 1.5rem;
  font-weight: 700;
  animation: fadeInUp 1s ease-out;
}

.Seadoo04 {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  margin: 1rem 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1.2s ease-out;
}

.Seadoo05 {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  margin: 1rem 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* コンテンツセクション */
#wrap-content {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

#wrap-content-middle {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.Seadoo07 {
  font-size: 1.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0 0 1rem 0;
}

.Seadoo07 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.Seadoo07 a:hover {
  color: var(--secondary-color);
}

hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  margin: 1.5rem 0;
  clear: both;
  display: inline;
}

hr[align="center"] {
  width: 100%;
  margin: 2rem auto;
}

/* 製品カード */
.SeadooPC {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin: 1.5rem 0;
  list-style: none;
}

.SeadooPC li {
  flex: 1 1 300px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.SeadooPC li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.SeadooPC img.clickableImage {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  transition: transform 0.5s ease;
}

.SeadooPC li:hover img.clickableImage {
  transform: scale(1.03);
}

.ahora {
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff;
  width: auto;
  border-radius: 0 0 8px 8px;
  margin-bottom: 0;
}

.ahora3 {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding: 0;
  width: auto;
  text-align: left;
}

/* リスト */
.Seadoolist1 {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  list-style-type: none;
  text-align: left;
  width: auto;
  font-size: 1rem;
  line-height: 1.5;
}

.Seadoolist1 li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  box-shadow: none;
}

.Seadoolist1 li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.Seadoolist1 li:hover {
  transform: none;
  box-shadow: none;
}

/* フッター */
.donde {
  z-index: 100;
  background: var(--bg-gradient);
  color: var(--text-light);
  text-align: center;
  padding: 1rem;
  width: 100%;
  position: relative;
  margin-top:0;
  font-size: 0.9rem;
  opacity: 1;
}

/* ユーティリティ */
.text-center {
  text-align: center;
}

.text-bold {
  font-weight: 600;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mt-2 {
  margin-top: 1rem;
}

/* アニメーション */
.wave-effect {
  position: relative;
  overflow: hidden;
}

.wave-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 80%);
  transform: scale(0);
  border-radius: 100%;
  transition: transform 0.5s, opacity 0.3s;
  opacity: 0;
}

.wave-effect:hover::after {
  transform: scale(2);
  opacity: 1;
}

/* ナビゲーションスクロール効果 */
#navbar.scrolled {
  background: var(--dark-blue);
  padding: 0.3rem 0;
}

#navbar.scrolled .navbar-item img {
  max-height: 3rem;
}

/* 特定のナビアイテムのスタイル */
.Seadoo021, .Seadoo022, .Seadoo023, .Seadoo024, .Seadoo025 {
  position: relative;
}

/* レスポンシブデザイン */
@media screen and (min-width: 1024px) {
  .container-item_l {
    width: 25% !important;
  }
  
  .container-item_r {
    width: 75% !important;
  }
  
  .Seadoo01 {
    font-size: 1vw;
    padding-left: 0;
  }
  
  .moto {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 1023px) {
  .navbar-burger {
    display: block;
  }
  
  .container-item_r {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-blue);
    padding: 0;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
  }
  
  .navbar-menu.is-active {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 1rem;
  }
  
  .moto {
    flex-direction: column;
  }
  
  .moto li {
    margin: 0.5rem 0;
    text-align: center;
  }
  
  #main h2.Seadoo03 {
    font-size: 2.5rem;
  }
  
  .Seadoo04, .Seadoo05 {
    font-size: 1.25rem;
  }
}

/* レスポンシブデザイン */
@media screen and (min-width: 1024px) {
  .container-item_l {
    width: 25% !important;
  }
  
  .container-item_r {
    width: 75% !important;
  }
  
  .Seadoo01 {
    font-size: 1vw;
    padding-left: 0;
  }
  
  .moto {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 1023px) {
  .navbar-burger {
    display: block;
  }
  
  .container-item_r {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-blue);
    padding: 0;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
  }
  
  .navbar-menu.is-active {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 1rem;
  }
  
  .moto {
    flex-direction: column;
  }
  
  .moto li {
    margin: 0.5rem 0;
    text-align: center;
  }
  
  #main h2.Seadoo03 {
    font-size: 2.5rem;
  }
  
  .Seadoo04, .Seadoo05 {
    font-size: 1.25rem;
  }
}

/* クリック拡大エフェクト */
.expanded {
  transform: scale(1.02);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
  #main {
    height: 50vh;
  }
  
  #main h2.Seadoo03 {
    font-size: 2rem;
  }
  
  .Seadoo04, .Seadoo05 {
    font-size: 1rem;
  }
  
  .SeadooPC {
    flex-direction: column;
  }
  
  .SeadooPC li {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .ahora, .ahora3 {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  #wrap-content-middle {
    padding: 1rem;
  }
}

/* モバイル画面サイズでの最適化 */
@media screen and (max-width: 480px) {
  #main {
    height: 40vh;
    min-height: 300px;
  }
  
  #main h2.Seadoo03 {
    font-size: 1.8rem;
  }
}
/* サービスセクションのスタイル */
.section-title {
  color: var(--primary-color);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--bg-gradient);
  border-radius: 3px;
}

.service-intro {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  background-color: var(--light-blue);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-icon {
  width: 80px;
  height: auto;
  margin-right: 1.5rem;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.service-intro p {
  flex: 1;
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.feature-title {
  color: var(--dark-blue);
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.feature-title::before,
.feature-title::after {
  content: '~';
  color: var(--secondary-color);
  margin: 0 10px;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-feature {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--bg-gradient);
  z-index: -1;
}

.service-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-feature:hover .feature-icon-wrapper {
  background: var(--bg-gradient);
  transform: scale(1.1);
}

.feature-icon {
  width: 40px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(28%) sepia(88%) saturate(1546%) hue-rotate(187deg) brightness(94%) contrast(101%);
  transition: all 0.3s ease;
}

.service-feature:hover .feature-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.service-feature h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-feature p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.cta-container {
  text-align: center;
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--bg-gradient);
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 120, 182, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 120, 182, 0.4);
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-button:hover::after {
  transform: translateX(0);
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .service-intro {
    flex-direction: column;
    text-align: center;
  }
  
  .service-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1rem;
  }
  
  .feature-title {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .service-feature {
    padding: 1.5rem;
  }
  
  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon {
    width: 30px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}


/* Maintenance Page Specific Styles */

/* Active nav item */
.moto li.active a {
  color: #00a0e9;
  font-weight: 700;
  position: relative;
}

.moto li.active a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #00a0e9;
}

/* Maintenance Banner */
.maintenance-banner {
  background: linear-gradient(135deg, #005592, #00a0e9);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.maintenance-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.maintenance-banner p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Grid */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #005592, #00a0e9);
}

.service-icon-container {
  background-color: rgba(0, 160, 233, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon-container img {
  width: 50px;
  height: auto;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #005592;
  text-align: center;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  text-align: center;
}

.service-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #444;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00a0e9;
  font-weight: bold;
}

/* Process Section */
.process-section {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
  margin: 3rem -1rem;
  position: relative;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #005592;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #00a0e9;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.step-number {
  background-color: #00a0e9;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #005592;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #666;
}

/* Gallery Section */
.maintenance-gallery {
  margin: 3rem 0;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  width: 100%;
  max-width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* CTA Section */
.maintenance-cta {
  background: linear-gradient(135deg, #005592, #00a0e9);
  color: white;
  padding: 3rem 2rem;
  border-radius: 10px;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.maintenance-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.maintenance-cta p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: #005592;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Testimonials Section */
.testimonials-section {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  margin: 0 -1rem;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  display: none;
}

.testimonial-content {
  font-style: italic;
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  color: rgba(0, 160, 233, 0.2);
  position: absolute;
  top: -10px;
  left: -20px;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-weight: 700;
  color: #005592;
  margin-bottom: 0.2rem;
}

.author-info p {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Info Strip */
.contact-strip {
  background-color: #005592;
  color: white;
  padding: 1.5rem 0;
  margin-top: 4rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
}

.info-item img {
  width: 25px;
  height: auto;
  margin-right: 0.8rem;
  filter: brightness(0) invert(1);
}

.info-item p {
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card {
    max-width: 100%;
  }
  
  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .gallery-container {
    flex-direction: column;
    align-items: center;
  }
  
  .gallery-item {
    max-width: 100%;
  }
  
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Reparación Page Specific Styles */

/* Repair Banner */
.repair-banner {
  background: linear-gradient(135deg, #b92b27, #e05c52);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.repair-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.repair-banner p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Main Repair Services Intro */
.main-services {
  margin: 3rem 0;
}

.repair-intro {
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.intro-icon {
  margin-right: 2rem;
  flex-shrink: 0;
}

.intro-icon img {
  width: 100px;
  height: auto;
}

.intro-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #b92b27;
  margin-bottom: 1rem;
}

.intro-content p {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Repair Services Grid */
.repair-services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.repair-service-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.repair-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.repair-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #b92b27, #e05c52);
}

.repair-service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #b92b27;
  text-align: center;
}

/* Expertise Section */
.expertise-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
  margin: 3rem -1rem;
}

.expertise-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.expertise-feature {
  display: flex;
  align-items: flex-start;
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 500px;
  transition: transform 0.3s ease;
}

.expertise-feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.feature-icon img {
  width: 60px;
  height: auto;
}

.feature-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #b92b27;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #666;
  line-height: 1.5;
}

/* Repair Process Timeline */
.repair-process-section {
  margin: 4rem 0;
}

.process-timeline {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 4px;
  background-color: #e05c52;
  z-index: 0;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2.5rem;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #b92b27;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  z-index: 1;
  box-shadow: 0 0 0 4px white;
}

.timeline-content {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #b92b27;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #666;
  margin: 0;
}

/* Before/After Gallery */
.before-after-section {
  margin: 4rem 0;
}

.section-intro {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.before-after-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.before-after-item {
  width: 100%;
  max-width: 500px;
}

.before-image, .after-image {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.before-image img, .after-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.repair-description {
  text-align: center;
  color: #444;
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Emergency Section */
.emergency-section {
  background-color: #b92b27;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  margin: 4rem 0 3rem;
  text-align: center;
}

.emergency-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.emergency-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.emergency-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.emergency-contact img {
  width: 30px;
  height: auto;
  filter: brightness(0) invert(1);
}

.emergency-phone {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.emergency-phone:hover {
  color: #fff;
  text-decoration: underline;
}

/* Repair CTA */
.repair-cta {
  background: linear-gradient(135deg, #b92b27, #e05c52);
  color: white;
  padding: 3rem 2rem;
  border-radius: 10px;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.repair-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.repair-cta p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Card hover effect animation */
.repair-service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.repair-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .repair-intro {
    flex-direction: column;
    text-align: center;
  }
  
  .intro-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .expertise-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .before-after-gallery {
    flex-direction: column;
    align-items: center;
  }
}

/* Animation for emergency section */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(185, 43, 39, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(185, 43, 39, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(185, 43, 39, 0);
  }
}

.emergency-section {
  animation: pulse 2s infinite;
}

/* Interactive Before/After Comparison Slider */
.comparison-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-before, .comparison-after {
  width: 100%;
  display: block;
}

.comparison-before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  border-right: 3px solid white;
}

.comparison-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 30px;
  margin-left: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 10;
}

.slider-handle {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-handle::before,
.slider-handle::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 2px;
  background-color: #b92b27;
}

.slider-handle::before {
  transform: rotate(45deg);
}

.slider-handle::after {
  transform: rotate(-45deg);
}

/* Tooltips for service cards */
.repair-service-card {
  position: relative;
}

.service-tooltip {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #b92b27;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transform: translate(50%, -50%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.tooltip-content {
  position: absolute;
  top: 30px;
  right: 0;
  background-color: white;
  color: #333;
  border-radius: 6px;
  padding: 1rem;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 20;
}

.service-tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

/* Repair progress indicator */
.repair-progress {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 800px;
  margin: 3rem auto;
  position: relative;
}

.repair-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 3px;
  background-color: #e0e0e0;
  z-index: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18%;
  position: relative;
  z-index: 1;
}

.step-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #666;
  font-weight: 700;
  transition: background-color 0.3s, color 0.3s;
}

.progress-step.active .step-indicator {
  background-color: #b92b27;
  color: white;
}

.progress-step.completed .step-indicator {
  background-color: #4CAF50;
  color: white;
}

.step-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  text-align: center;
  transition: color 0.3s;
}

.progress-step.active .step-label {
  color: #b92b27;
}

.progress-step.completed .step-label {
  color: #4CAF50;
}

/* Fading animation for items */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Repair Page Updated Styles */

/* Changing red colors to blue-themed colors */

/* Repair Banner */
.repair-banner {
  background: var(--bg-gradient);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  box-shadow: 0 10px 20px rgba(0, 120, 182, 0.2);
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.repair-banner:hover {
  transform: translateY(-5px);
}

/* Main Repair Services Intro */
.intro-content h3 {
  color: var(--primary-color);
}

/* Repair Services Cards */
.repair-service-card::before {
  background: var(--bg-gradient);
}

.repair-service-card h3 {
  color: var(--primary-color);
}

/* Expertise Section */
.feature-content h3 {
  color: var(--primary-color);
}

/* Repair Process Timeline */
.process-timeline::before {
  background-color: var(--secondary-color);
}

.timeline-marker {
  background-color: var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px white, 0 0 10px rgba(0, 120, 182, 0.5);
}

.timeline-content h3 {
  color: var(--primary-color);
}

/* Emergency Section */
.emergency-section {
  background-color: var(--primary-color);
  animation: none; /* Remove the red pulse animation */
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.emergency-section:hover {
  transform: translateY(-5px);
}

.emergency-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: water-ripple 5s infinite linear;
}

@keyframes water-ripple {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Repair CTA */
.repair-cta {
  background: var(--bg-gradient);
  position: relative;
  overflow: hidden;
}

.repair-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23ffffff" fill-opacity="0.05" d="M25,30 Q35,5 50,30 T75,30 Q65,55 50,30 T25,30 Z"/></svg>') repeat;
  background-size: 100px 100px;
  animation: water-movement 10s linear infinite;
  pointer-events: none;
}

@keyframes water-movement {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

/* Tooltips for service cards */
.service-tooltip {
  background-color: var(--primary-color);
}

/* Repair progress indicator */
.progress-step.active .step-indicator {
  background-color: var(--primary-color);
}

.progress-step.active .step-label {
  color: var(--primary-color);
}

/* Enhanced card hover effects */
.repair-service-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  border: 1px solid rgba(0, 120, 182, 0.1);
}

.repair-service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 120, 182, 0.2);
  border-color: rgba(0, 120, 182, 0.3);
}

/* Animated icon for repair cards */
.service-icon-container {
  background-color: rgba(0, 120, 182, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.repair-service-card:hover .service-icon-container {
  transform: rotate(10deg) scale(1.1);
  background: var(--light-blue);
}

/* Before/After images enhancement */
.before-image, .after-image {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.before-image:hover, .after-image:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 120, 182, 0.25);
}

.image-label {
  background-color: rgba(0, 120, 182, 0.8);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.before-image:hover .image-label, .after-image:hover .image-label {
  transform: translateY(-3px);
  background-color: var(--primary-color);
}

/* Add water-related decoration to the expertise section */
.expertise-section {
  position: relative;
  overflow: hidden;
}

.expertise-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 30" preserveAspectRatio="none"><path fill="%230078B6" fill-opacity="0.1" d="M0,0 C300,30 600,0 900,20 C1000,30 1100,15 1200,5 L1200,30 L0,30 Z" /></svg>') repeat-x;
  background-size: 1200px 30px;
}

/* Add subtle wave animation to features */
.expertise-feature {
  position: relative;
  overflow: hidden;
}

.expertise-feature::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.expertise-feature:hover::after {
  transform: translateX(100%);
}

/* Fade-in animation when scrolling */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced comparison slider */
.comparison-slider .slider-handle {
  background: var(--primary-color);
  color: white;
  transition: transform 0.3s ease;
}

.comparison-slider:hover .slider-handle {
  transform: scale(1.1);
}

.slider-handle::before,
.slider-handle::after {
  background-color: white;
}

.comparison-before {
  border-right: 3px solid var(--accent-color);
}
  .service-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .service-item {
    margin: 25px 0;
    padding: 20px;
    background-color: rgba(240, 240, 240, 0.3);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .service-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
  }
  
  .service-icon {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .service-icon img {
    max-width: 60px;
    height: auto;
  }
  
  .highlight {
    background-color: rgba(255, 248, 220, 0.5);
    border: 1px solid rgba(255, 102, 0, 0.2);
  }
  
  .btn-contact:hover {
    background-color: #0055aa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  @media (max-width: 768px) {
    .service-item {
      padding: 15px;
    }
    
    .ahora3 {
      font-size: 16px !important;
    }
    
    h3.ahora3 {
      font-size: 20px !important;
    }
  }
/* Escaneo Page Specific Styles */

/* Escaneo Banner */
.escaneo-banner {
  background: linear-gradient(135deg, #006699, #0099cc);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  box-shadow: 0 10px 20px rgba(0, 102, 153, 0.2);
  transform: translateY(0);
  transition: transform 0.5s ease;
  text-align: center;
}

.escaneo-banner:hover {
  transform: translateY(-5px);
}

.escaneo-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.escaneo-banner p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Escaneo Intro */
.escaneo-intro {
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background-color: #f0f8ff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.intro-icon {
  margin-right: 2rem;
  flex-shrink: 0;
}

.intro-icon img {
  width: 100px;
  height: auto;
}

.intro-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #006699;
  margin-bottom: 1rem;
}

.intro-content p {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Escaneo Services Grid */
.escaneo-services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.escaneo-service-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 100%;
  max-width: 350px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 102, 153, 0.1);
}

.escaneo-service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 102, 153, 0.2);
  border-color: rgba(0, 102, 153, 0.3);
}

.escaneo-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #006699, #0099cc);
}

.service-highlight {
  border: 2px solid #ff9900;
  background-color: #fffaf0;
}

.service-highlight::before {
  background: linear-gradient(90deg, #ff9900, #ffcc00);
}

.special-offer-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ff9900;
  color: white;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 0 10px 0 10px;
  z-index: 1;
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);
}

.service-icon-container {
  background-color: rgba(0, 102, 153, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.escaneo-service-card:hover .service-icon-container {
  transform: rotate(10deg) scale(1.1);
  background-color: rgba(0, 102, 153, 0.2);
}

.service-icon-container img {
  width: 50px;
  height: auto;
}

.escaneo-service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #006699;
  text-align: center;
}

.escaneo-service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Process Section */
.escaneo-process-section {
  background-color: #f5f9fc;
  padding: 3rem 1rem;
  margin: 3rem -1rem;
  position: relative;
  border-radius: 10px;
}

.section-title {
  color: #006699;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #006699, #0099cc);
  border-radius: 3px;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateX(10px);
}

.step-number {
  background-color: #006699;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(360deg);
  background-color: #0099cc;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #006699;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #666;
}

/* Benefits Section */
.benefits-section {
  margin: 4rem 0;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.benefit-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  width: 100%;
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 102, 153, 0.15);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: #f0f8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon img {
  width: 40px;
  height: auto;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #006699;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Urgent Section */
.urgent-section {
  background-color: #ffe6e6;
  border-left: 5px solid #cc0000;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 3rem 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(204, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 0, 0, 0);
  }
}

.urgent-content {
  display: flex;
  align-items: center;
}

.urgent-icon {
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.urgent-icon img {
  width: 60px;
  height: auto;
}

.urgent-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #cc0000;
  margin-bottom: 0.5rem;
}

.urgent-text p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Equipment Section */
.equipment-section {
  margin: 4rem 0;
}

.equipment-showcase {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 2.5rem;
}

.equipment-image {
  flex: 1;
  max-width: 40%;
  padding: 2rem;
}

.equipment-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.equipment-image:hover img {
  transform: scale(1.05);
}

.equipment-description {
  flex: 1.5;
  padding: 2rem;
}

.equipment-description h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #006699;
  margin-bottom: 1rem;
}

.equipment-description p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.equipment-features {
  list-style-type: none;
  padding: 0;
}

.equipment-features li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.equipment-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0099cc;
  font-weight: bold;
}

/* Escaneo CTA */
.escaneo-cta {
  background: linear-gradient(135deg, #006699, #0099cc);
  color: white;
  padding: 3rem 2rem;
  border-radius: 10px;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.escaneo-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23ffffff" fill-opacity="0.05" d="M25,30 Q35,5 50,30 T75,30 Q65,55 50,30 T25,30 Z"/></svg>') repeat;
  background-size: 100px 100px;
  animation: water-movement 10s linear infinite;
  pointer-events: none;
}

.escaneo-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.escaneo-cta p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.escaneo-cta .cta-button {
  position: relative;
  z-index: 1;
  background-color: white;
  color: #006699;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: inline-block;
}

.escaneo-cta .cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .escaneo-intro {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .intro-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .intro-content h3 {
    font-size: 1.5rem;
  }
  
  .escaneo-service-card {
    max-width: 100%;
  }
  
  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .urgent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .urgent-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .equipment-showcase {
    flex-direction: column;
  }
  
  .equipment-image {
    max-width: 100%;
  }
  
  .escaneo-banner h2,
  .escaneo-cta h2 {
    font-size: 1.6rem;
  }
  
  .escaneo-banner p,
  .escaneo-cta p {
    font-size: 1rem;
  }
}