.PULSE {
  -webkit-animation: PULSE 1s infinite; 
  -ms-animation: PULSE 1s infinite;
  animation: PULSE 1.25s infinite; 
}

@-webkit-keyframes PULSE{
   0%{color:rgba(50,160,103,1.0);}	
	110%{color: black;}
}

@-ms-keyframes PULSE{
  0%{color:rgba(50,160,103,1.0);}	
	110%{color: black;}
}

@keyframes PULSE{
  0%{color:rgba(50,160,103,1.0);}
	110%{color: black;}
}

/* ========================================
   HERO SECTION - FULLSCREEN WITH PARALLAX
   ======================================== */

/* Fullscreen Hero */
.hero_fullscreen {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Parallax background effect - CSS only for better iOS compatibility */
.hero_fullscreen.general:before {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  will-change: transform;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Subtitle as inline list with separators */
.hero-subtitle-list {
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.8;
}

.subtitle-item {
  white-space: nowrap;
}

.subtitle-separator {
  color: #17a2b8;
  font-size: 1.5rem;
  font-weight: bold;
  opacity: 0.8;
}

/* Trust Signals */
.hero-trust-signals {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.hero-trust-signals .trust-item i {
  font-size: 5rem !important;
  margin-bottom: 1rem;
  color: #17a2b8;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
  width: 5rem;
  height: 5rem;
  display: inline-block;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta .btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-shadow: none;
}

.hero-cta .btn-primary {
  background: #17a2b8;
  border-color: #17a2b8;
  box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
}

.hero-cta .btn-primary:hover {
  background: #138496;
  border-color: #117a8b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 162, 184, 0.5);
}

.hero-cta .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-cta .btn-outline-light:hover {
  background: #fff;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet breakpoint */
@media (max-width: 991px) {
  .hero_fullscreen {
    height: 85vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-subtitle-list {
    font-size: 1.125rem;
  }

  .subtitle-separator {
    font-size: 1.25rem;
  }

  .trust-item {
    font-size: 0.95rem;
  }

  .hero-trust-signals .trust-item i {
    font-size: 4rem !important;
    width: 4rem;
    height: 4rem;
  }

  .hero-trust-signals {
    gap: 2.5rem;
  }
}

/* Mobile breakpoint */
@media (max-width: 767px) {
  .hero_fullscreen {
    height: 80vh;
    min-height: 450px;
  }

  /* Disable parallax on mobile for performance */
  .hero_fullscreen.general:before {
    background-attachment: scroll;
  }

  /* Hide video on mobile, show fallback image instead */
  .hero-video-wrapper {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle-list {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
  }

  .subtitle-separator {
    font-size: 1.125rem;
  }

  .hero-trust-signals {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .trust-item {
    font-size: 0.875rem;
  }

  .hero-trust-signals .trust-item i {
    font-size: 3.5rem !important;
    width: 3.5rem;
    height: 3.5rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-lg {
    width: 100%;
    margin-left: 0 !important;
  }
}

/* ========================================
   HERO SEARCH INTERFACE (VRBO-STYLE)
   ======================================== */

.hero-search-interface {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.search-section {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  padding: 8px 8px 8px 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  max-width: 850px;
  margin: 0 auto;
}

.search-field {
  flex: 1;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-radius: 40px;
}

.search-field:hover {
  background: rgba(0, 0, 0, 0.05);
}

.search-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-field .search-input {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

.search-divider {
  width: 1px;
  height: 40px;
  background: #e0e0e0;
}

.search-button {
  background: #17a2b8;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
}

.search-button:hover {
  background: #138496;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(23, 162, 184, 0.5);
}

.search-button i {
  font-size: 1.1rem;
}

.hero-cta-below {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.hero-cta-below a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.3s ease;
}

.hero-cta-below a:hover {
  border-bottom-color: white;
}

/* Tablet breakpoint */
@media (max-width: 991px) {
  .search-section {
    max-width: 700px;
    padding: 6px 6px 6px 20px;
  }

  .search-field {
    padding: 10px 12px;
  }

  .search-field label {
    font-size: 0.7rem;
  }

  .search-field .search-input {
    font-size: 0.875rem;
  }

  .search-button {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* Mobile breakpoint */
@media (max-width: 767px) {
  .search-section {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px;
    gap: 8px;
  }

  .search-field {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.02);
  }

  .search-divider {
    display: none;
  }

  .search-button {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    padding: 16px;
  }

  .hero-cta-below {
    font-size: 0.875rem;
  }
}

/* Accessibility: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero_fullscreen.general:before {
    background-attachment: scroll;
  }

  .hero-content {
    animation: none;
  }

  .search-button:hover {
    transform: none;
  }
}
