/* =========================
  RESET & BASE
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{
  background:#f5f5f5;
  color:#212121;
  overflow-x:hidden;
}

html{
  scroll-behavior:smooth;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

/* =========================
  UTILITIES
========================= */
.container{
  width: min(1200px, 90%);
  margin: auto;
}

/* =========================
  HEADER / NAVIGATION
========================= */
#inicio .contenido header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
}

#inicio .contenido header .contenido-header {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

#icono-nav{
  display:none;
  font-size:2rem;
  cursor:pointer;
  color:#C62828;
}

#inicio .contenido header .contenido-header nav{
  margin-left:auto;
  margin-right:auto;
}

#inicio .contenido header .contenido-header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap:3rem;
}

#inicio .contenido header .contenido-header nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 400;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

#inicio .contenido header .contenido-header nav ul li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  background:#D62828;
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .35s ease;
}

#inicio .contenido header .contenido-header nav ul li a:hover{
  color:#D62828;
}

#inicio .contenido header .contenido-header nav ul li a:hover::after {
  transform:scaleX(1);
}

#inicio .contenido header .contenido-header .seleccionado {
  color: #D62828;
}

#inicio .contenido header .contenido-header .seleccionado::after{
  transform:scaleX(1);
}

.logo{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-main{
  width: 140px;
  object-fit: contain;
}

.login-btn{
  background:#4CAF50;
  color:white;
  border:none;
  padding:12px 20px;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.login-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(76,175,80,0.3);
}

.cerrar-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
    color: #C62828;
    font-size:2rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.cerrar-menu:hover {
    color: #C62828;
    transform: rotate(90deg);
}

.login-btn-mobile{
  display:none;
}

/* =========================
  HERO
========================= */
.hero{
  position:relative;
  min-height:90vh;
  overflow:visible;
}

/* Slider */
.hero-slider{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1s ease;
}

.hero-slide.active{
  opacity:1;
}

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Overlay */
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.35));
  display:flex;
  align-items:center;
  padding-bottom:100px;
}

/* Contenido */
.hero-content{
  max-width:700px;
  color:white;
}

.hero-badge{
  display:inline-block;
  padding:.6rem 1.2rem;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
  margin-bottom:1.5rem;
}

.hero-content h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:1.5rem;
}

.hero-content p{
  font-size:1.15rem;
  line-height:1.8;
  max-width:600px;
}

/* Dots */
.hero-dots{
  position:absolute;
  bottom:15px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:.75rem;
  z-index:5;
}

.hero-dots span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(255,255,255,.45);
}

.hero-dots span.active{
  background:white;
}

/* =========================
  SEARCH CARD
========================= */
/* Buscador */
.search-card{
  position:absolute;
  left:50%;
  bottom:50px;
  transform:translateX(-50%);
  width:min(1200px,90%);
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(18px);
  border-radius:32px;
  padding:2rem;
  box-shadow: 0 25px 60px rgba(0,0,0,.18);
  z-index:10;
  animation:floatCard 4s ease-in-out infinite;
}

@keyframes floatCard{
    50%{
        transform:
        translateX(-50%)
        translateY(-5px);
    }
}

/* Grid */
.search-grid{
  display:grid;
  grid-template-columns:1fr auto 1fr 1fr 1fr auto;
  gap:1rem;
  align-items:end;
}

/* Boxes */
.search-box{
  display:flex;
  flex-direction:column;
  gap:.5rem;
}

.search-box label{
  font-weight:600;
  color:#555;
}

/* Inputs */
.search-field{
  border:none;
  background:#f5f5f5;
  height:70px;
  border-radius:22px;
  padding:0 1.25rem;
  display:flex;
  align-items:center;
  gap:.85rem;
  font-size:1rem;
  color:#444;
  cursor:pointer;
  transition:.3s;
}

.search-field:hover{
  background:#eeeeee;
}

/* Iconos */
.search-field i{
  color:#C62828;
  font-size:1.2rem;
}

/* Botón Intercambiar */
.swap-btn{
  width:55px;
  height:55px;
  border:none;
  border-radius:18px;
  background:#C62828;
  color:white;
  cursor:pointer;
  transition:.3s;
}

.swap-btn:hover{
  transform:rotate(180deg);
}

.swap-btn.swapping{
  animation: swapRotate .4s ease;
}

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

/* Botón Buscar */
.btn-search{
  border:none;
  height:70px;
  padding:0 2rem;
  border-radius:22px;
  background:#C62828;
  color:white;
  font-weight:600;
  font-size:1rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:.75rem;
  transition:.3s;
}

.btn-search:hover{
  background:#b71c1c;
  transform:translateY(-3px);
}


.search-card h2{
  margin-bottom:1.5rem;
  color:#212121;
}

.input-group{
  margin-bottom:1rem;
}

.input-group label{
  display:block;
  margin-bottom:0.5rem;
  font-size:0.9rem;
  font-weight:600;
  color:#666;
}

.input-wrapper{
  display:flex;
  align-items:center;
  gap:0.8rem;
  border:1px solid #ddd;
  padding:14px 16px;
  border-radius:14px;
  transition:0.3s;
}

.input-wrapper:focus-within{
  border-color:#C62828;
  box-shadow:0 0 0 4px rgba(198,40,40,0.1);
}

.input-wrapper i{
  color:#C62828;
  font-size:1.1rem;
}

.input-wrapper input,
.input-wrapper select{
  width:100%;
  border:none;
  outline:none;
  background:transparent;
  font-size:1rem;
}

.search-btn{
  width:100%;
  border:none;
  background:#4CAF50;
  color:white;
  padding:16px;
  border-radius:14px;
  font-size:1rem;
  font-weight:600;
  cursor:pointer;
  margin-top:1rem;
  transition:0.3s;
}

.search-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 30px rgba(76,175,80,0.35);
}

.dropdown-container{
  position:relative;
}

.search-dropdown{
  position:absolute;
  top:calc(100% + 12px);
  left:0;
  width:100%;
  background:#fff;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.12);
  padding:.5rem;
  display:none;
  z-index:100;
  max-height:350px;
  overflow-y:auto;
}

.calendar-dropdown{
  width:320px;
  padding:1rem;
}

.passenger-dropdown{
  width:360px;
  padding:1rem;
}

.calendar-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:1rem;
  font-weight:700;
}

.calendar-header button{
  border: none;
  background:none;
  cursor:pointer;
  font-size:1.1rem;
}

.calendar-header button:disabled{
  opacity: .35;
  cursor: not-allowed;
}

.calendar-grid{
  display:grid;
  grid-template-columns: repeat(7,1fr);
  gap:.5rem;
}

.calendar-weekday{
  text-align:center;
  font-size:.8rem;
  font-weight:700;
  color:#888;
}

.calendar-day{
  height:40px;
  border:none;
  border-radius:12px;
  background: #f5f5f5;
  cursor:pointer;
  transition:.25s;
}

.calendar-day.selected{
  background:#C62828;
  color:#fff;
}

.calendar-day.today{
  border:2px solid #C62828;
  background: #fff;
  color:#C62828;
  font-weight:700;
}

.calendar-day.disabled{
  opacity:.35;
  cursor:not-allowed;
}

.calendar-day.disabled:hover{
  background:#f5f5f5;
  color:#444;
  transform:none;
}

.calendar-day:hover{
  background:#C62828;
  color:#fff;
  transform:scale(1.05);
}

.search-dropdown.show{
  display:block;
}

.dropdown-item{
  width:100%;
  border:none;
  background:none;
  padding:1rem 1.25rem;
  text-align:left;
  border-radius:12px;
  font-size:1rem;
  cursor:pointer;
  transition:.25s;
}

.passenger-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 0;
}

.passenger-row:not(:last-child){
  border-bottom:1px solid #ececec;
}

.passenger-row h4{
  font-size:1rem;
  margin-bottom:.25rem;
}

.passenger-row p{
  color:#777;
  font-size:.85rem;
}

.passenger-controls{
  display:flex;
  align-items:center;
  gap:1rem;
}

.counter-btn{
  width:36px;
  height:36px;
  border:none;
  border-radius:50%;
  background:#fff;
  border:1px solid #C62828;
  color:#C62828;
  font-size:1.3rem;
  cursor:pointer;
  transition:.25s;
}

.counter-btn:hover{
  background:#C62828;
  color:#fff;
}

.counter-value{
  width:24px;
  text-align:center;
  font-size:1.2rem;
  font-weight:700;
}

.dropdown-state{
  padding:1rem 1.25rem;
  font-size:1rem;
  font-weight:700;
  color:#C62828;
  background:#fafafa;
  border-bottom:1px solid #ececec;
}

.dropdown-letter{
  padding:.75rem 1.25rem;
  font-size:.85rem;
  font-weight:700;
  color:#777;
  background:#f5f5f5;
}

.dropdown-item:hover{
  background:#f5f5f5;
  color:#D62828;
}

/* =========================
  SECTION TITLE
========================= */
.section-title{
  text-align:center;
  margin-bottom:4rem;
}

.section-title h2{
  font-size:2.5rem;
  margin-bottom:1rem;
}

.section-title p{
  color:#666;
}

/* =========================
  PROCESS
========================= */
.process {
  background: white;
  padding: 100px 0;
}

.process .section-title h2{
  font-size: 2.8rem;
}

.process .section-title span{
  color: #C62828;
}

.steps-container{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap:2rem;
  margin-top:4rem;
}

.steps-line{
  position:absolute;
  top:35px;
  left:15%;
  right:15%;
  height:6px;
  background:#C62828;
  border-radius:50px;
  z-index:1;
}

.step-card{
  position: relative;
  flex: 1;
  text-align: center;
  z-index: 2;
  transition: 
    transform .3s ease,
    filter .3s ease;
}

.step-icon{
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  background: #C62828;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(198,40,40,.25);
  transition: 
    transform .3s ease,
    box-shadow .3s ease;
}

.step-card h3{
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #212121;
}

.step-card p{
  color: #666;
  line-height: 1.8;
  max-width: 280px;
  margin: auto;
}

.step-card:hover .step-icon{
  transform: scale(1.08);
  box-shadow: 0 18px 35px rgba(198,40,40,.35);
}

/* =========================
  DESTINATIONS
========================= */
.destinations{
  padding:120px 0;
}

.destination-link{
  display: block;
  width: 100%;
  height: 100%;
}

.destinations-collage{
  display:grid;
  grid-template-columns:
  repeat(3,1fr);
  grid-auto-rows:260px;
  gap:1.5rem;
}

.destination-item{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  cursor:pointer;
  box-shadow:
  0 20px 40px rgba(0,0,0,0.12);
}

.destination-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.7s;
}

.destination-item:hover img{
  transform:scale(1.08);
}

.destination-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
  to top,
  rgba(0,0,0,0.45),
  rgba(0,0,0,0.10),
  rgba(0,0,0,0.05)
  );
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding-top: 2rem;
  padding-right:2rem;
  padding-bottom:2rem;
  padding-left: 0;
}

.destination-overlay p{
  color:rgba(255,255,255,0.95);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  font-weight: 500;
  line-height:1.6;
  max-width:320px;
  margin-left: 0.5rem;
}

.destination-pill{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 220px;
  padding:10px 24px 10px 42px;
  border-radius: 50px;
  background:rgba(198,40,40,0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  color:white;
  font-size: 1rem;
  font-weight:700;
  margin-left: -2rem;
  margin-bottom:.75rem;
}

.large{
  grid-column:span 2;
  grid-row:span 2;
}

.mobile-carousel{
  display:none;
}

.mobile-track{
  display:flex;
  gap:1rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding: 0 1rem;
  scrollbar-width:none;
}

.mobile-track::-webkit-scrollbar{
  display:none;
}

.mobile-card{
  width: 280px;
  height:480px;
  border-radius:28px;
  overflow:hidden;
  position:relative;
  flex-shrink:0;
  scroll-snap-align:center;
  box-shadow:
  0 20px 40px rgba(0,0,0,0.12);
}

.mobile-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.mobile-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
  to top,
  rgba(0,0,0,0.75),
  rgba(0,0,0,0.15),
  transparent
  );
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding-top:2rem;
  padding-right:2rem;
  padding-bottom:2rem;
  padding-left:0;
  color:white;
}

.mobile-overlay .destination-pill{
  margin-left:-2rem;
}

.mobile-overlay p{
  color:rgba(255,255,255,0.85);
  line-height:1.6;
  margin-left: 0.5rem;
}

.carousel-dots{
  display:flex;
  justify-content:center;
  gap:.5rem;
  margin-top:1.5rem;
}

.carousel-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#d0d0d0;
}

.carousel-dots span.active{
  background:#C62828;
}

/* =========================
  FAQ
========================= */
#faq{
  padding-top:100px;
  padding-bottom:120px;
  margin-bottom:-6rem;
  background:
  linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.4)),
  linear-gradient(135deg,#C62828,#8E0000);
}

#faq .section-title h2{
  color:white; 
}

#faq .section-title h2 span{
  color: #FF8A80; 
}

#faq .section-title p{
  color:rgba(255,255,255,.85);
}

.faq-container{
  max-width:900px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.faq-item{
  background:rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  overflow:hidden;
  transition:
    opacity .8s ease,
    transform .8s ease,
    filter .8s ease,
    border-color .3s ease;
}

.faq-item:nth-child(1){ transition-delay:.1s; }
.faq-item:nth-child(2){ transition-delay:.2s; }
.faq-item:nth-child(3){ transition-delay:.3s; }
.faq-item:nth-child(4){ transition-delay:.4s; }

.faq-item:hover{
  border-color:rgba(255,255,255,.4);
  transform:translateY(-2px);
}

.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1.5rem 1.75rem;
  border:none;
  background:none;
  cursor:pointer;
  font-size:1.05rem;
  font-weight:600;
  color:white;
  text-align:left;
}

.faq-question i{
  color:white;
  font-size:1.25rem;
  transition:.3s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:
  max-height .35s ease,
  padding .35s ease;
  padding:0 1.75rem;
}

.faq-answer p{
  color:rgba(255, 255, 255, .85);
  line-height:1.8;
  padding-bottom:1.5rem;
}

.faq-item.active .faq-answer{
  max-height:200px;
}

.faq-item.active .faq-question{
  color:white; 
}

/* =========================
  FOOTER
========================= */
.footer{
  background:#fff;
  margin-top:6rem;
  border-top:1px solid #e5e7eb;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1.2fr;
  gap:3rem;
  padding:2.5rem 0;
  align-items: start;
}

.footer-brand img{
  width: 140px;
  margin-bottom:0;
  margin-left: 1.5rem;
}

.footer h4{
  color:#D62828;
  margin-bottom:1rem;
  font-size:1.1rem;
}

.footer a{
  display:block;
  text-decoration:none;
  color:#555;
  margin-bottom:.75rem;
  transition:.3s;
}

.footer a:hover{
  color:#D62828;
}

.footer-toggle{
  display:block;
  border:none;
  background:none;
  color:#D62828;
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:1rem;
  cursor:default;
  pointer-events:none;
}

.footer-toggle i{
  display:none;
}

.footer-content{
  display:block;
}

.footer-contact{
  display:flex;
  align-items:center;
  gap:.35rem;
  color:#555;
  margin-top:.5rem;
}

.footer-contact i{
  font-size:1.15rem;
  color:#25D366; 
}

.footer-contact span{
  font-size:1rem;
}

.footer-social{
  display:flex;
  gap:1rem;
  margin-top:1rem;
}

.footer-social a{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#707070;
  font-size: 2rem;
  opacity: .8;
  transition:
    color .3s ease,
    transform .3s ease,
    opacity .3s ease;
}

.footer-social a:hover{
  opacity: 1;
  color: #D62828;
  transform:translateY(-6px) scale(1.12);
}

.footer-bottom{
  border-top:1px solid #e5e7eb;
  text-align:center;
  padding:1.5rem;
  color:#777;
}

/* =========================
  ANIMATIONS
========================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* =========================
  RESPONSIVE 769px
========================= */
@media (min-width:769px){
  .step-card:hover{
    transform: translateY(-10px);
  }

  .step-card:hover .step-icon{
    transform: scale(1.08);
    box-shadow:0 18px 35px rgba(198,40,40,.35);
  }
}

/* =========================
  RESPONSIVE 992px
========================= */
@media(max-width:992px){
  .hero-container{
    gap:2rem;
  }

  .hero-copy h1{
    font-size:3rem;
  }

  .footer-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

/* =========================
  RESPONSIVE 768px
========================= */
@media(max-width:768px){
  .destinations-collage{
    display:none;
  }

  .mobile-carousel{
    display:block;
  }

  .search-card{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:92%;
    margin:2rem auto 0;
    padding:1.25rem;
  }

  .hero-content{
    max-width:100%;
  }

  .hero-overlay{
    padding-top:130px;
  }

  .hero-content h1{
    font-size:3.2rem;
    max-width:260px;
  }

  .hero-content p{
    max-width: 300px;
    line-height: 1.6;
  }

  .section-title h2{
    font-size:2rem;
  }

  .login-btn{
    padding: 10px 16px;
    display:none;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem 0;
  }

  .footer-brand{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: .25rem;
  }

  .footer-brand-text{
    margin-bottom:0;
  }

  .footer-social{
    justify-content: center;
    margin-top: .5rem;
  }

  .footer-contact{
    justify-content: center;
  }

  .footer-accordion{
    border-bottom: none;
    padding:0;
  }

  .footer-toggle{
    width:100%;
    background:none;
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:1.15rem;
    font-weight:700;
    color:#D62828;
    padding:0.75rem 1.5rem;
    cursor:pointer;
    pointer-events: auto;
  }

  .footer-toggle i{
    transition:.3s;
    display: block;
    font-size: 1.4rem;
  }

  .footer-content{
    max-height:0;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    gap:.75rem;
    transition:max-height .35s ease;
    padding:0 1.5rem;
  }

  .footer-accordion.active .footer-content{
    max-height:200px;
  }

  .footer-accordion.active .footer-toggle i{
    transform:rotate(180deg);
  }

   #icono-nav{
    display:block;
  }

  #inicio .contenido header .contenido-header nav ul li a{
    width:fit-content;
  }

  #inicio .contenido header .contenido-header nav{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#fff;
    transition:.35s ease;
    z-index:1000;
    padding-top:90px;
  }

  #inicio .contenido header .contenido-header nav.responsive{
    right:0;
  }

  #inicio .contenido header .contenido-header nav ul{
    flex-direction:column;
    align-items:flex-start;
    padding:0 2rem;
    gap: .5rem;
  }

  #inicio .contenido header .contenido-header nav ul li{
    width:100%;
    margin-bottom:.75rem;
  }

  #inicio .contenido header .contenido-header nav ul li a{
    color: #222;
    margin:0;
    justify-content:flex-start;
    font-size:1.1rem;
  }

  .cerrar-menu{
    display:block;
  }

  .login-btn-mobile{
    display:block;
    margin: 1rem 2rem 0;
    padding:14px;
    border:none;
    border-radius:12px;
    background:#4CAF50;
    color:white;
    font-weight:600;
  }

  .steps-container{
    flex-direction:column;
    gap:1.75rem;
    position:relative;
  }

  .steps-line{
    display:block;
    position:absolute;
    left:34px;
    top:40px;
    width:6px;
    height:calc(100% - 120px);
    
    border-radius:20px;
    z-index:1;
    background: rgba(198,40,40,.35);
  }

  .step-card{
    display:flex;
    align-items:flex-start;
    gap:1rem;
    text-align:left;
    width:100%;
    max-width:none;
    position:relative;
    z-index:2;
    opacity:0;
    transform:translateY(20px);
  }

  .step-card.active{
    opacity:1;
    transform:translateY(0);
  }

  .step-icon{
    width:65px;
    height:65px;
    margin:0;
    flex-shrink:0;
  }

  .step-content{
    padding-top:0;
  }

  .step-card h3{
    font-size:1.2rem;
    margin-bottom:.5rem;
  }

  .step-card p{
    max-width:250px;
    margin:0;
    line-height:1.8;
  }

  .step-card:hover{
    transform: translateY(-10px);
  }

  .step-card:hover .step-icon{
    transform: scale(1.08);
    box-shadow:0 18px 35px rgba(198,40,40,.35);
  }
}