
.hero-slider .carousel-item {
  height: 85vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
}


.btn-primary
{
     background-color: #640505;
    border-color: #640505;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #4f0404;
  border-color: #4f0404;
  color: #fff;
}

.btn-primary:active {
  background-color: #3b0303;
  border-color: #3b0303;
}
.btn {
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

/* HERO IMAGE */
.hero-img {
  height: 85vh;
  object-fit: cover;
  animation: kenburns 16s linear forwards;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
}

/* POSITION FIX */
.carousel-item {
  position: relative;
}

/* KEN BURNS EFFECT */
@keyframes kenburns {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.1) translateY(-10px);
  }
}

/* RESET animation on slide change */
.carousel-item:not(.active) .hero-img {
  animation: none;
}


.destinations {
  background-color: #f8f8f8;
}

.destination-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.destination-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2)
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.destination-overlay h3 {
  margin: 0;
  font-weight: 600;
}

.destination-overlay span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Hover effect */
.destination-card:hover img {
  transform: scale(1.08);
}

/* ===== Destinations Grid ===== */

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  height: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* ===== Call to Action ===== */

.cta-section {
  color: #fff;
  padding: 80px 0;

  /* Subtle gradient using brand red */
  background: linear-gradient(
    to bottom,
    #6f0606,
    #640505,
    #5a0404
  );

  /* Soft inner shadow for depth */
  box-shadow:
    inset 0 12px 24px rgba(0, 0, 0, 0.35),
    inset 0 -12px 24px rgba(0, 0, 0, 0.25);
}

.cta-section h2 {
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
  opacity: 0.95;
}

.cta-section .btn {
  font-weight: 600;
  padding: 12px 34px;
}
/* ===== Scroll Reveal ===== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* Stagger effect for children */
.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-visible .reveal-item:nth-child(1) { transition-delay: 0.1s; }
.reveal-visible .reveal-item:nth-child(2) { transition-delay: 0.25s; }
.reveal-visible .reveal-item:nth-child(3) { transition-delay: 0.4s; }

/* Grid reveal refinement */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Stagger effect for grid items */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
.reveal:nth-child(5) { transition-delay: 0.5s; }
.reveal:nth-child(6) { transition-delay: 0.6s; }

/* ===== Testimonios ===== */

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
     border: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-text {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-name {
  margin: 0;
  font-weight: 600;
  color: #640505;
}

.testimonial-location {
  font-size: 0.85rem;
  color: #888;
}

@media (max-width: 767px) {
  #testimoniosCarousel .testimonial-card {
    margin: 0 12px;
  }
}

#testimoniosCarousel .carousel-control-prev-icon,
#testimoniosCarousel .carousel-control-next-icon {
  background-image: none;
  width: 18px;
  height: 18px;
  border-top: 3px solid #640505;
  border-right: 3px solid #640505;
}

/* Left arrow */
#testimoniosCarousel .carousel-control-prev-icon {
  transform: rotate(-135deg);
}

/* Right arrow */
#testimoniosCarousel .carousel-control-next-icon {
  transform: rotate(45deg);
}

/* Move testimonial carousel controls outside */
#testimoniosCarousel .carousel-control-prev {
  left: -40px;
}

#testimoniosCarousel .carousel-control-next {
  right: -40px;
}

/* Keep vertical centering */
#testimoniosCarousel .carousel-control-prev,
#testimoniosCarousel .carousel-control-next {
  width: 40px;
  top: 50%;
  transform: translateY(-50%);
}
/* ===== Contacto ===== */
/* ===== Contact Section Background ===== */

.contact-section {
  padding: 90px 0;

  background: linear-gradient(
    to bottom,
    #6f0606,
    #640505,
    #5a0404
  );

  box-shadow:
    inset 0 14px 26px rgba(0, 0, 0, 0.35),
    inset 0 -14px 26px rgba(0, 0, 0, 0.25);
}

/* White content cards */
.contact-box {
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.contact-box h5 {
  color: #640505;
  font-weight: 600;
}

/* Small spacing fix on mobile */
@media (max-width: 767px) {
  .contact-section {
    padding: 70px 0;
  }
}
.contact-box p {
  line-height: 1.6;
}
.site-footer {
  background: linear-gradient(
    to bottom,
    #0e0e0e,
    #050505
  );

  box-shadow:
    inset 0 12px 24px rgba(0, 0, 0, 0.85);

  padding: 70px 0 50px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-logo {
  max-width: 180px;
  filter: brightness(1.1);
}

.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #640505;
  margin-top: 8px;
  border-radius: 3px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-links a:hover,
.site-footer a:hover {
  color: #640505;
}
.footer-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(100, 5, 5, 0.6),
    transparent
  );
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #640505;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  z-index: 998;
}
.inner-hero {
  position: relative;
  background: url(../img/hero-maria.jpg) center/cover no-repeat;
  padding: 120px 0 100px;
  color: #fff;
}
#viajes .inner-hero
{
    background: url(../img/hero-santos.jpg) center/cover no-repeat;
}
#tierraSanta .inner-hero
{
    background: url(../img/hero-tierra-santa.jpg) center/cover no-repeat;
}
#espana .inner-hero
{
    background: url(../img/destino-espana.jpg) center/cover no-repeat;
}
#italia .inner-hero
{
    background: url(../img/destino-italia.jpg) center/cover no-repeat;
}
#fatima .inner-hero
{
    background: url(../img/destino-fatima.jpg) center/cover no-repeat;
}
#grecia .inner-hero
{
    background: url(../img/destino-grecia.jpg) center/cover no-repeat;
}
#mexico .inner-hero
{
    background: url(../img/destino-mexico.jpg) center/cover no-repeat;
}

/* Dark + red overlay */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(100, 5, 5, 0.65)
  );
}

/* Keep content above overlay */
.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.inner-hero-text {
  font-size: 1.15rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
}

.about-section {
  padding: 90px 0;
  background: #fff;
}

.section-title {
  font-weight: 700;
  color: #640505;
  margin-bottom: 20px;
}

.about-section p {
  line-height: 1.7;
  color: #444;
}

.about-image {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}
.values-section {
  padding: 90px 0;
  background: #fff;
}

.value-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.value-card h5 {
  color: #640505;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.red-section {
  padding: 90px 0;

  background: linear-gradient(
    to bottom,
    #6f0606,
    #640505,
    #5a0404
  );

  box-shadow:
    inset 0 16px 30px rgba(0, 0, 0, 0.35),
    inset 0 -16px 30px rgba(0, 0, 0, 0.25);

  color: #fff;
}
.process-card {
  background: #fff;
  padding: 36px 26px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}

.process-card:hover {
  transform: translateY(-6px);
}
.process-section{
     padding: 90px 0;
}
.process-step {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #640505;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card h5 {
  color: #640505;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.cta-section-about {
  padding: 110px 0;
}

.cta-title {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
color: #640505;
}

.cta-text {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.viajes-section {
  padding: 90px 0;
  background: #fff;
}

.viaje-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease;
}

.viaje-card:hover {
  transform: translateY(-6px);
}

.viaje-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.viaje-body {
  padding: 24px;
  text-align: center;
}

.viaje-body h5 {
  color: #640505;
  font-weight: 600;
  margin-bottom: 10px;
}

.viaje-body p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 18px;
}
.info-strip {
  background: #f8f9fa;
  padding: 30px 0;
}

.info-item span {
  font-size: 28px;
  display: block;
  margin-bottom: 6px;
}

.info-item p {
  margin: 0;
  font-weight: 500;
}

.description-section {
  padding: 90px 0;
  background: #fff;
}

.itinerary-section {
  padding: 90px 0;
  background: #f9f9f9;
}

.itinerary-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 20px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform 0.25s ease;
}

.itinerary-card:hover {
  transform: translateY(-6px);
}

.itinerary-day {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #640505;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

.itinerary-card h5 {
  color: #640505;
  font-weight: 600;
  margin-bottom: 10px;
}

.itinerary-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.gallery-section {
  padding: 90px 0;
  background: #fff;
}

.gallery-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}


/* */
#gallery .gallery-section {
  padding: 90px 0;
  background: #fff;
}

#gallery .gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  transition: transform 0.25s ease;
}

#gallery .gallery-card:hover {
  transform: scale(1.03);
}

#gallery .gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

#gallery .gallery-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(100,5,5,0.85), rgba(0,0,0,0));
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
}

.value-icon i {
  font-size: 2.5rem;
  color: #640505; /* Tripsanto red */
}

.masonry-grid {
  column-count: 3;
  column-gap: 1rem;
}

@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
}

.masonry-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.masonry-item img {
  transition: transform 0.3s ease;
}

.masonry-item a:hover img {
  transform: scale(1.03);
}
.masonry-item a {
  cursor: zoom-in;
}

.contact-info-box,
.contact-form-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
}

/* Contact details */
.contact-details {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-details i {
  font-size: 1.2rem;
  color: #640505;
}

/* After form reassurance */
.contact-after i {
  color: #640505;
  margin-right: 0.5rem;
}

/* WhatsApp button cleanup */
.contact-direct a {
  text-decoration: none;
}
