/* ============================================
   FireFly Technical Tour - Standalone Styles
   Based on FireFly Design System
============================================ */

@charset "UTF-8";

/* ============================================
   Base Styles & Typography
============================================ */
* {
  margin: 0;
  padd: ;ing: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #1B1B1B;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .display-4 {
  font-weight: 900; /* Montserrat Black */
}

h4, h5 {
  font-weight: 800; /* Montserrat ExtraBold */
}

.btn, .card-title {
  font-weight: 600; /* Montserrat SemiBold */
}

p, li {
  font-weight: 400; /* Montserrat Regular */
}

/* Section Kicker */
.section-kicker,
.header-kicker,
.form-section-kicker {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #003466;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 52, 102, 0.1);
  border-radius: 6px;
}

/* ============================================
   Exit Intent Modal
============================================ */
.exit-intent-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.exit-intent-modal.show {
  display: flex;
}

.exit-intent-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 6px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.exit-intent-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.exit-intent-close:hover {
  color: #003466;
}

.exit-intent-content h3 {
  color: #003466;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.exit-intent-content p {
  margin-bottom: 1.5rem;
  color: #666;
}

.exit-intent-small {
  font-size: 0.875rem;
  color: #999;
  margin-top: 1rem;
  text-align: center;
}

/* ============================================
   Scroll Triggered Giveaway Popup
============================================ */
.scroll-giveaway-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.scroll-giveaway-modal.show {
  display: flex;
}

.scroll-giveaway-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 6px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.scroll-giveaway-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.scroll-giveaway-close:hover {
  color: #003466;
}

.scroll-giveaway-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffe803 0%, #ffd700 100%);
  color: #003466;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(255, 232, 3, 0.3);
}

.scroll-giveaway-content h3 {
  color: #003466;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 900;
}

.scroll-giveaway-content p {
  margin-bottom: 1.5rem;
  color: #666;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.btn-scroll-giveaway {
  display: inline-block;
  background: #003466;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 52, 102, 0.3);
}

.btn-scroll-giveaway:hover {
  background: #005cb9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 52, 102, 0.4);
  color: #ffffff;
}

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

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

/* ============================================
   HubSpot Form Modal
============================================ */
.hubspot-form-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  padding: 2rem 0;
}

.hubspot-form-modal.show {
  display: flex;
}

.hubspot-form-modal-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 6px;
  max-width: 600px;
  width: 90%;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: auto;
}

.hubspot-form-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
  z-index: 1;
}

.hubspot-form-close:hover {
  color: #003466;
}

.form-modal-title {
  color: #003466;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 900;
}

.form-modal-subtitle {
  margin-bottom: 1.5rem;
  color: #666;
  font-size: 1rem;
}

/* CTA Button in Header */
.form-cta-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.form-cta-subtitle {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.btn-open-form {
  background: #5693ce;
  color: #fff;
  padding: 1.25rem 3rem;
  border: 1px solid #afd5f9;
  border-radius: 6px;
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-open-form:hover {
  background: #ffd700;
  transform: translateY(-2px);
  color: #003466;
}

/* Modal Mobile Responsiveness */
@media (max-width: 767.98px) {
  .hubspot-form-modal-content {
    padding: 2rem 1.5rem;
    width: 95%;
    max-width: none;
  }
  
  .form-modal-title {
    font-size: 1.5rem;
  }
  
  .form-modal-subtitle {
    font-size: 0.95rem;
  }
  
  .hubspot-form-close {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.75rem;
  }
}

/* ============================================
   Social Proof Banner
============================================ */
.social-proof-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #7c7f85 0%, #9da1aa 100%);
  color: #ffffff;
  padding: 0.75rem 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.social-proof-banner.show {
  transform: translateY(0);
}

.social-proof-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.social-proof-icon {
  flex-shrink: 0;
}

.social-proof-text {
  font-size: 0.9375rem;
  font-weight: 500;
}

.social-proof-text strong {
  color: #ffe803;
  font-weight: 700;
}

/* ============================================
   Header Section
============================================ */
.tour-header {
  position: relative;
  min-height: 65vh;
  min-height: 600px; /* Fallback for Windows Chrome vh calculation issues */
  /* Removed max-height constraint to prevent content cutoff */
  background: linear-gradient(135deg, #003466 0%, #005cb9 100%);
  color: #ffffff;
  display: flex;
  align-items: flex-start; /* Changed from center to prevent cutoff on Windows Chrome */
  padding: 80px 0 60px;
  overflow: visible; /* Changed from hidden to visible to prevent content clipping */
}

.hero-content-row {
  min-height: auto;
	padding-top: 40px!important;
}

@media (min-width: 992px) {
  .hero-content-row {
    align-items: flex-end;
  }
}

.tour-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Hero image placeholder - uncomment when image is available */
  /* background: url('../img/hero-placeholder.jpg') center/cover no-repeat; */
  opacity: 0.15;
  z-index: 1;
}

/* Background Video */
.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%; /* Ensure video covers full header height */
  object-fit: cover;
  z-index: 1;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
background: #005CB9;
background: linear-gradient(98deg,rgba(0, 52, 102, 1) 0%, rgba(0, 52, 102, 1) 20%, rgba(237, 221, 83, 0) 86%);
  z-index: 2;
}

.tour-header .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 100%;
}

.header-content {
  animation: fadeInUp 0.8s ease;
}

.header-logo {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 2.8rem; /* Double spacing between logos */
  margin-bottom: 2rem;
}

.header-title {
  font-size: 2rem!important; 
  font-weight: 900;
  line-height: 2 !important; 
  margin-bottom: 1.5rem;
  color: #ffffff;
}
/* Desktop only: Center logo and kicker */
@media (min-width: 992px) {
  .header-logo {
    justify-content: center;
    position: relative;
  }
  
  .header-kicker-wrapper {
    text-align: center;
  }
  
  .header-kicker {
    display: inline-block;
    position: relative;
  }
  
  .header-title {
    text-align: center;
	 font-size: 2rem!important; 
  }
  
  .header-subtitle,
  .header-features {
    text-align: left;
  }
}

.firefly-logo-img {
  height: 3rem;
  width: auto;
  max-width: 450px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.header-kicker {
  background: rgba(255, 232, 3, 1);
  color: #003466;
  border: 2px solid #fcf4a1;
  font-size: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

}

.header-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4 !important; 
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.header-title .highlight-yellow {
  color: #ffe803;
}

.header-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  text-align: center;
}

.header-features {
  display: flex;
  flex-direction: column;
  gap: .51rem;
	padding-left: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.33rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.feature-item svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Header Form */
.header-form-container {
  animation: fadeInUp 0.8s ease 0.2s both;
}

.form-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-title {
  font-size: 2rem;
  font-weight: 800;
  color: #003466;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.hubspot-form-wrapper {
  min-height: 400px;
}

.form-placeholder {
  padding: 3rem 2rem;
  text-align: center;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 6px;
  color: #6c757d;
}

.form-placeholder-note {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  color: #999;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  animation: bounceArrow 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

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

/* ============================================
   Logo Scroll Section
============================================ */
.logo-scroll-section {
  padding: 3rem 0 0;
  background: #fff;
}

.logo-scroll-section .section-header {
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.section-header {
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #003466;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  margin-top: 0.5rem;
}

.logo-scroll-container-fullwidth {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 0 3rem;
  background: #ffffff;
}

.logo-scroll-track {
  display: flex;
  gap: 4rem;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

.logo-item {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0.5rem;
}

.logo-placeholder {
  width: 100%;
  height: 120px;
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #999;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
}

.logo-item:hover {
  transform: translateY(-4px);
}

.logo-item:hover .logo-placeholder {
  border-color: #003466;
  box-shadow: 0 4px 12px rgba(0, 52, 102, 0.1);
}

.logo-item:hover .logo-title {
  color: #005cb9;
}

.logo-item:hover .logo-location {
  color: #003466;
}

.logo-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #003466;
  text-align: center;
  margin-bottom: 0.25rem;
  line-height: 1.3;
  width: 100%;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #666;
  text-align: center;
  line-height: 1.3;
  width: 100%;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.subtitle{
    font-size: 1.25rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
    margin-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    text-align: center;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}
/* ============================================
   5 Reasons Section
============================================ */
.reasons-section {
  padding: 5rem 0;
  background: #d2d7e1;
  border-top: 1px solid #9da1aa;
}

.reason-card {
  background: #ffffff;
  border: 1px solid #9da1aa;
  border-radius: 6px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #003466;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.reason-card:hover {
  border-color: #003466;
  box-shadow: 0 8px 24px rgba(0, 52, 102, 0.15);
  transform: translateY(-4px);
}

.reason-card:hover::before {
  transform: scaleY(1);
}

.reason-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 52, 102, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.reason-card:hover .reason-number {
  color: rgba(0, 52, 102, 0.2);
}

.reason-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #003466;
  margin-bottom: 1rem;
}

.reason-description {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

/* Main Reasons (Top 3) */
.reason-card-main {
  min-height: 280px;
}

.reason-card-main .reason-number {
  font-size: 5rem;
}

.reason-card-main .reason-title {
  font-size: 1.75rem;
}

.reason-card-main .reason-description {
  font-size: 1.0625rem;
}

/* Sub Reasons (Bottom 6) */
.reason-card-sub {
  min-height: 220px;
}

.reason-number-sub {
  font-size: 3rem !important;
}

.reason-title-sub {
  font-size: 1.25rem !important;
}

.reason-description-sub {
  font-size: 0.75rem !important;
}

/* ============================================
   Schedule Section
============================================ */
.schedule-section {
  padding: 5rem 0;
  background: #d2d7e1;
  border-top: 1px solid #eceff6;
}

.schedule-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.schedule-day {
  margin-bottom: 4rem;
}

.schedule-day:last-child {
  margin-bottom: 0;
}

.day-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid #003466;
}

.day-number {
  background: #003466;
  color: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
}

.day-title {
  font-size: 2rem;
  font-weight: 800;
  color: #003466;
  margin: 0;
}

.schedule-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.schedule-item {
  display: flex;
  gap: 2rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 6px;
  border-left: 4px solid #003466;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.schedule-item:hover {
  box-shadow: 0 4px 16px rgba(0, 52, 102, 0.15);
  transform: translateX(4px);
}

.schedule-time {
  flex-shrink: 0;
  width: 140px;
  font-weight: 700;
  color: #003466;
  font-size: 1rem;
}

.schedule-content {
  flex: 1;
}

.schedule-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #003466;
  margin-bottom: 0.5rem;
}

.schedule-description {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   Giveaway Section
============================================ */
.giveaway-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #003466 0%, #005cb9 100%);
  color: #ffffff;
}

.giveaway-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 3rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin: 0 auto;
}

.giveaway-content {
  flex: 1;
}

.giveaway-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffe803 0%, #ffd700 100%);
  color: #003466;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(255, 232, 3, 0.3);
}

.giveaway-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #003466;
  margin-bottom: 1rem;
}

.giveaway-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.giveaway-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.giveaway-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #003466;
  font-weight: 600;
}

.giveaway-feature svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.btn-giveaway {
  display: inline-block;
  background: #003466;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 52, 102, 0.3);
}

.btn-giveaway:hover {
  background: #005cb9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 52, 102, 0.4);
  color: #ffffff;
}

.giveaway-visual {
  flex: 0 0 300px; /* 50% smaller than original 300px */
}

.giveaway-image {
  width: 100%;
  height: 300px; /* Match container height */
  object-fit: cover;
  border-radius: 6px;
  display: block;
}



/* ============================================
   Testimonials Section
============================================ */
.testimonials-section {
  padding: 0;
  background: #003466; /* Charcoal/off-black background */
}

.testimonials-fullwidth {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f8f9fa;
}

.testimonials-fullwidth .section-header {
  padding: 3rem 0 2rem;
}

.testimonials-fullwidth .section-kicker {
  background: rgba(255, 232, 3, 0.2);
  color: #ffe803;
  border: 1px solid rgba(255, 232, 3, 0.3);
}

.testimonials-fullwidth .section-title {
  color: #ffffff;
}

.testimonials-videos-container {
  width: 100%;
  padding: 0 0 4rem;
  background: #2a2a2a;
}

.testimonials-videos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 0 1.5rem;
  max-width: 100%;
}

.testimonial-video-item {
  background: #1a1a1a;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial-video-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.testimonial-video-item .video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  overflow: hidden;
}

.wistia-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
}

.video-placeholder-content {
  text-align: center;
  color: #ffffff;
}

.video-placeholder-content svg {
  margin-bottom: 1rem;
  color: #666;
}

.video-placeholder-content p {
  color: #999;
  margin-bottom: 0.5rem;
}

.video-placeholder-content small {
  color: #666;
  font-size: 0.75rem;
}

.testimonial-video-item .video-info {
  padding: 1.25rem;
  background: #1a1a1a;
}

.testimonial-video-item .video-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.testimonial-video-item .video-subtitle {
  color: #999;
  font-size: 0.875rem;
  margin: 0;
}

/* ============================================
   Bottom Form Section
============================================ */
.bottom-form-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.form-section-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-section-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #003466;
  margin-bottom: 1rem;
}

.form-section-description {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.form-section-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #003466;
  font-weight: 600;
}

.benefit-item svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.form-section-form {
  padding-left: 2rem;
}

/* ============================================
   Footer
============================================ */
.tour-footer {
  background: #003466;
  color: #ffffff;
  padding: 3rem 0 1.5rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  margin: 0;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
  color: #ffe803;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* ============================================
   Back to Top Button
============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: #003466;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 52, 102, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #005cb9;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 52, 102, 0.4);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   Responsive Design
============================================ */
@media (max-width: 991.98px) {
  /* HEADER SECTION */
  .tour-header {
    padding: 80px 0 50px !important;
    min-height: auto !important;
    max-height: none !important;
    display: block !important;
  }
  
  .tour-header .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .header-content {
    padding: 0 !important;
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
  }
  
  .header-logo {
    justify-content: center !important;
    margin-bottom: 1.25rem !important;
  }
  
  .header-kicker {
    display: inline-block;
    margin-bottom: 1.25rem !important;
  }
  
  .header-title {
    font-size: 1.5rem !important;
    margin-bottom: 1.25rem !important;
  }
  
  .header-subtitle {
    margin-bottom: 1.75rem !important;
  }
  
  .header-features {
    margin-bottom: 2.5rem !important;
    padding-left: 0 !important;
  }
  
  .header-form-container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: 100%;
  }
  
  .form-cta-card {
    padding: 1.5rem !important;
  }
  
  .form-cta-subtitle {
    font-size: 1rem !important;
    margin-bottom: 1.25rem !important;
  }
  
  .btn-open-form {
    padding: 1rem 2rem !important;
    font-size: 1.125rem !important;
    width: 100%;
  }
  
  .form-card {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  
  /* OTHER SECTIONS */
  .giveaway-card {
    flex-direction: column;
  }
  
  .giveaway-visual {
    flex: 1;
    width: 100%;
  }
  
  .giveaway-image {
    width: 100%;
    height: auto; /* Let height adjust naturally on tablet */
    max-height: 200px; /* Limit height on tablet */
  }
  
  .form-section-form {
    padding-left: 0;
    padding-top: 2rem;
  }
  
  .schedule-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .schedule-time {
    width: 100%;
  }
  
  .testimonials-videos-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 767.98px) {
  .tour-header {
    padding: 70px 0 40px !important;
    min-height: auto !important;
    max-height: none !important;
    display: block !important;
  }
  
  .header-content {
    text-align: center !important;
    margin-bottom: 2rem !important;
  }
  
  .header-logo {
    justify-content: center !important;
    margin-bottom: 1rem !important;
  }
  
  .firefly-logo-img {
    height: 3.06rem !important;
    max-width: 440px;
  }
  
  .header-kicker {
    font-size: 0.7rem !important;
    padding: 0.35rem 0.7rem;
    margin-bottom: 1rem !important;
    display: inline-block;
  }
  
  .header-title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
  }
  
  .header-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
  }
  
  .header-features {
    gap: 0.85rem !important;
    margin-bottom: 2rem !important;
    padding-left: 0 !important;
  }
  
  .feature-item {
    font-size: 0.9rem !important;
    gap: 0.5rem !important;
  }
  
  .feature-item svg {
    width: 22px !important;
    height: 22px !important;
  }
  
  .header-form-container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  
  .form-card {
    padding: 1.5rem !important;
  }
  
  .form-title {
    font-size: 1.35rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .form-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
  }
  
  .form-placeholder {
    padding: 1.5rem 1rem !important;
  }
  
  .scroll-indicator {
    font-size: 0.75rem;
    bottom: 1rem;
  }
  
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-kicker {
    font-size: 0.75rem;
  }
  
  .form-card {
    padding: 2rem;
  }
  
  .giveaway-card {
    padding: 2rem;
  }
  
  .giveaway-title {
    font-size: 2rem;
  }
  
  .form-section-card {
    padding: 2rem;
  }
  
  .form-section-title {
    font-size: 2rem;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-giveaway {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
  
  .benefit-item {
    font-size: 1rem;
  }
  
  .benefit-item svg {
    width: 28px;
    height: 28px;
  }
  
  .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .logo-item {
    width: 180px;
  }
  
  .logo-placeholder {
    height: 100px;
  }
  
  .logo-title {
    font-size: 0.875rem;
  }
  
  .logo-location {
    font-size: 0.75rem;
  }
  
  .testimonials-section .section-title {
    font-size: 1.75rem;
  }
  
  .testimonial-video {
    aspect-ratio: 16/9;
  }
  
  .social-proof-banner {
    padding: 0.4rem 0;
  }
  
  .social-proof-text {
    font-size: 0.8rem;
  }
  
  .social-proof-icon {
    width: 16px;
    height: 16px;
  }
  
  .testimonials-videos-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .reason-card-main {
    min-height: 240px;
  }
  
  .reason-card-sub {
    min-height: 200px;
  }
}

@media (max-width: 575.98px) {
  .tour-header {
    padding: 65px 0 35px !important;
    min-height: auto !important;
    max-height: none !important;
    display: block !important;
  }
  
  .tour-header .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .header-content {
    text-align: center !important;
    margin-bottom: 1.75rem !important;
  }
  
  .header-logo {
    justify-content: center !important;
    margin-bottom: 0.9rem !important;
  }
  
  .firefly-logo-img {
    height: 2.36rem !important;
    max-width: 315px !important;
  }
  
  .header-kicker {
    font-size: 0.6rem !important;
    padding: 0.3rem 0.6rem !important;
    margin-bottom: 0.9rem !important;
    display: inline-block;
  }
  
  .header-title {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.9rem !important;
    text-align: center !important;
  }
  
  .header-subtitle {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
    margin-bottom: 1.4rem !important;
    text-align: center !important;
  }
  
  .header-features {
    gap: 0.75rem !important;
    margin-bottom: 2rem !important;
    padding-left: 0 !important;
  }
  
  .feature-item {
    font-size: 0.8rem !important;
    gap: 0.45rem !important;
  }
  
  .feature-item svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
  }
  
  .header-form-container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  
  .form-card {
    padding: 1.25rem !important;
  }
  
  .form-title {
    font-size: 1.15rem !important;
    margin-bottom: 0.65rem !important;
  }
  
  .form-subtitle {
    font-size: 0.75rem !important;
    margin-bottom: 1rem !important;
  }
  
  .form-placeholder {
    padding: 1.5rem 0.85rem !important;
  }
  
  .form-placeholder p {
    font-size: 0.85rem !important;
  }
  
  .form-placeholder-note {
    font-size: 0.7rem !important;
  }
  
  .social-proof-banner {
    padding: 0.35rem 0;
  }
  
  .social-proof-text {
    font-size: 0.75rem;
  }
  
  .social-proof-content {
    gap: 0.5rem;
  }
  
  .social-proof-icon {
    width: 14px;
    height: 14px;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .back-to-top {
    bottom: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
  }
  
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-kicker {
    font-size: 0.7rem;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-giveaway {
    font-size: 0.85rem;
    padding: 0.65rem 1.25rem;
  }
  
  .reason-card {
    padding: 1.5rem;
  }
  
  .reason-title {
    font-size: 1.25rem;
  }
  
  .reason-number {
    font-size: 2rem;
  }
  
  .schedule-item {
    padding: 1.5rem;
  }
  
  .giveaway-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .giveaway-feature {
    font-size: 0.9rem;
  }
  
  .giveaway-feature svg {
    width: 24px;
    height: 24px;
  }
  
  .giveaway-card {
    padding: 1.5rem;
  }
  
  .giveaway-visual {
    flex: 1;
    width: 100%;
  }
  
  .giveaway-image {
    width: 100%;
    height: auto; /* Full width on mobile, maintain aspect ratio */
    max-height: 250px; /* Reasonable max height for mobile */
  }
  
  .giveaway-title {
    font-size: 1.5rem;
  }
  
  .giveaway-badge {
    font-size: 0.7rem;
  }
  
  .form-section-card {
    padding: 1.5rem;
  }
  
  .form-section-title {
    font-size: 1.5rem;
  }
  
  .form-section-kicker {
    font-size: 0.7rem;
  }
  
  .benefit-item {
    font-size: 0.9rem;
  }
  
  .benefit-item svg {
    width: 24px;
    height: 24px;
  }
  
  .schedule-day-number {
    font-size: 1.5rem;
  }
  
  .schedule-day-title {
    font-size: 1rem;
  }
}

/* ============================================
   Scroll Animations
============================================ */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

.vignette {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allows clicks to pass through */
}

.vignette::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 10;
}
