/* Modern Color Palette & Base Variables */
:root {
  --primary: #2d3436;
  --secondary: #00b894;
  --accent: #fd79a8;
  --light: #dfe6e9;
  --dark: #2d3436;
  --glass: rgba(255, 255, 255, 0.15);
  --gradient: linear-gradient(135deg, #6c5ce7 0%, #a8e6cf 100%);
  --urgent: #ff3838;
  --success: #00b894;
  --warning: #fdcb6e;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}

/* Header Styles - REMOVED (Using Simple Logo Instead) */

/* Old Header Responsive Styles - REMOVED */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  margin-top: 0;
  background: linear-gradient(135deg, #6c5ce7 0%, #a8e6cf 100%);
  background-attachment: fixed;
  overflow: hidden;
}

/* Fallback background with image overlay */
.hero.with-bg-image {
  background-image: linear-gradient(rgba(108, 92, 231, 0.8), rgba(168, 230, 207, 0.8)), url('../images/airlines.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* Better mobile performance */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 92, 231, 0.1);
  z-index: 1;
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 2; /* Ensures content is above the overlay */
  color: white; /* Adjust text color for better visibility */
  text-align: center;
}

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

.hero-text h1 {
  font-size: 3.5rem;
  text-align: center;

  margin-bottom: 2rem;
  font-weight: 800;
  color: white;
}

.special-offer {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  max-width: 400px;
}

.special-offer h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.special-offer p {
  color: white;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 1.5rem 3rem; /* Increased padding */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700; /* Bolder font */
  font-size: 1.5rem; /* Larger font size */
  transition: all 0.3s ease;
  text-align: center;
  width: fit-content; /* Ensure it doesn't stretch */
  margin: 0 auto; /* Center the button */
}

.cta-button:hover {
  background: #00a085;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

/* Modern Cards for Support Features */
.support-features {
  padding: 4rem 2rem;
  background: white;
}

.support-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.support-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

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

.support-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.support-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.support-card p {
  font-size: 0.95rem;
  color: var(--primary);
}

/* Airlines Section */
.airlines {
  padding: 4rem 2rem;
  background: var(--light);
}

.airlines-container {
  max-width: 1200px;
  margin: 0 auto;
}

.airlines-header {
  text-align: center;
  margin-bottom: 2rem;
}

.airlines-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.airlines-header p {
  font-size: 1rem;
  color: var(--primary);
}

.airlines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.airline-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
}

.airline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.airline-card h3 {
  margin: 15px 0 8px 0;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: bold;
}

.airline-card p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Airline Logo Styles */
.airline-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  position: relative;
}

.airline-logo::after {
  content: attr(data-airline);
  position: absolute;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Individual Airline Brand Colors & Logos */
.airline-logo.american {
  background: linear-gradient(135deg, #C41E3A, #FF6B6B);
}

.airline-logo.american::after {
  content: "AA";
}

.airline-logo.delta {
  background: linear-gradient(135deg, #003366, #0066CC);
}

.airline-logo.delta::after {
  content: "Δ";
  font-size: 1.5rem;
}

.airline-logo.united {
  background: linear-gradient(135deg, #002244, #0066CC);
}

.airline-logo.united::after {
  content: "UA";
}

.airline-logo.southwest {
  background: linear-gradient(135deg, #FF6600, #FFB84D);
}

.airline-logo.southwest::after {
  content: "SW";
}

.airline-logo.jetblue {
  background: linear-gradient(135deg, #0033AA, #0066FF);
}

.airline-logo.jetblue::after {
  content: "B6";
}

.airline-logo.alaska {
  background: linear-gradient(135deg, #005030, #00AA60);
}

.airline-logo.alaska::after {
  content: "AS";
}

.airlines-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
}

.airlines-footer p {
  color: #666;
  font-style: italic;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.partner-benefits {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.benefit-badge {
  background: linear-gradient(135deg, var(--secondary), #00d2a3);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,184,148,0.3);
  transition: all 0.3s ease;
}

.benefit-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,184,148,0.4);
}

/* 24/7 Support Section */
.support {
    padding: 4rem 2rem;
    background: var(--gradient);
    color: white;
  }
  
  .support-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
  }
  
  .support-item {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
  }
  
  .support-item h2 {
    margin-bottom: 1rem;
    color: white;
  }
  
  .support-item p {
    color: white;
    font-size: 0.95rem;
  }

/* Disclaimer Section */
.disclaimer {
  padding: 20px 20px;
  background: var(--dark);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.disclaimer p {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.1;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* Side Sticky CTA */
.side-sticky-cta {
  position: fixed;
  right: -220px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 30px 0 0 30px;
  box-shadow: -8px 0 35px rgba(0,0,0,0.2);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(0,184,148,0.3);
  overflow: hidden;
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  min-width: 200px;
}

.side-sticky-cta.show {
  right: 0;
}

.side-sticky-cta:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-color: rgba(0,184,148,0.5);
  transform: translateY(-50%) scale(1.02);
  box-shadow: -10px 0 40px rgba(0,0,0,0.25);
}

.side-cta-content {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  gap: 15px;
  position: relative;
}



.side-support-gif {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--secondary);
  box-shadow: 0 3px 15px rgba(0,184,148,0.3);
  animation: sideBounce 2s infinite;
}

@keyframes sideBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.side-cta-text {
  display: flex;
  flex-direction: column;
  color: var(--dark);
}

.side-cta-text span {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--dark), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.side-cta-text small {
  font-size: 0.8rem;
  color: #555;
  font-weight: 600;
  margin-top: 2px;
}



/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 30px 20px;
  text-align: center;
  font-size: 0.8rem;
}

.footer p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

.footer a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}

/* Centered Call-to-Action */
.center-cta-container {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.center-cta-container.show {
    opacity: 1;
    transform: translateY(0);
}

.center-cta-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: none;
    max-width: 400px;
    width: 100%;
    border: none;
    transition: all 0.3s ease;
}

.center-cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary);
}

.center-cta-box .cta-icon {
    margin-bottom: 20px;
}

.center-cta-box .support-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), #00d2a3);
    padding: 15px;
}

.center-cta-box h4 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

.center-cta-box p {
    margin: 0 0 25px 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.center-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--urgent);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 56, 56, 0.3);
    transition: all 0.3s ease;
    animation: ctaPulse 2s infinite;
}

.center-call-btn:hover {
    background: #ff2020;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 56, 56, 0.4);
}

@keyframes ctaPulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(255, 56, 56, 0.3);
    }
    50% { 
        box-shadow: 0 4px 25px rgba(255, 56, 56, 0.5);
    }
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-content {
    gap: 2rem;
    padding: 0 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  
  .special-offer {
    max-width: 350px;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sticky-cta-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cta-left {
        justify-content: center;
    }
    
    .cta-text h4 {
        font-size: 1rem;
    }
    
    .cta-text p {
        font-size: 0.85rem;
    }
    
    .sticky-call-btn {
        padding: 15px 25px;
        font-size: 1.2rem;
    }
    
    .disclaimer {
        margin-bottom: 100px;
    }
    
    .footer {
        padding-bottom: 120px;
    }
}

/* .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 2rem;
  background: var(--gradient);
  overflow: hidden;
} */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 2rem;
}

.hero-text {
  text-align: center;
  justify-self: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem; /* Adjusted margin */
  font-weight: 800;
  color: white;
}

/* .hero::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
opacity: 0.1;
z-index: 1;
} */
  
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: white;
}

.features-list li::before {
  content: "✓";
  color: var(--accent);
}

.special-offer {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  justify-self: center;
}

.special-offer h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.special-offer p {
  color: white;
  margin-bottom: 1.5rem; /* Adjusted margin */
}

.cta-button {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 1rem 2rem; /* Adjusted padding */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem; /* Adjusted font size */
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #00a085;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.5rem; /* Increased font size */
}

/* Animation for Call Button */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
    }
    .animate-pulse {
    animation: pulse 1.5s infinite;
    }

    /* Fade-in Animation */
    @keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
    }
    .animate-fade-in {
    animation: fadeIn 1s ease-in-out;
    }


    /* Sticky CTA Section */
    .sticky-cta {
    position: sticky;
    bottom: 0;
    z-index: 2001;
    }

    .sticky-cta span {
    font-size: 26px;
    }



/* Professional Banner Styles - REMOVED */

/* Announcement Banner Styles */
.announcement-banner {
  background: linear-gradient(90deg, #6c5ce7, #a8e6cf);
  color: white;
  padding: 15px 20px;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.announcement-text {
  font-weight: bold;
  font-size: 1.1rem;
  flex: 1;
  text-align: left;
}

.banner-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.countdown-timer {
  background: rgba(255,255,255,0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-family: monospace;
}

.banner-cta-btn {
  background: rgba(255,255,255,0.9);
  color: #6c5ce7;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.banner-cta-btn:hover {
  background: white;
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Main CTA Block Styles */
.main-cta-block {
  background: rgba(255,255,255,0.95);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  margin-top: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border: 3px solid var(--secondary);
}

.cta-header {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 15px;
}

.phone-number-cta {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--urgent);
  text-decoration: none;
  margin: 15px 0;
  transition: transform 0.3s ease;
}

.phone-number-cta:hover {
  transform: scale(1.05);
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.cta-benefit {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.soft-urgency {
  font-size: 1rem;
  color: #e74c3c;
  font-weight: 600;
  margin-top: 15px;
  font-style: italic;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.benefits-container h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: rgba(29, 78, 216, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1;
  display: block;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 700;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Facebook-Style Testimonials */
.testimonials-section {
  padding: 80px 20px;
  background: white;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-container h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary);
}

.fb-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.fb-testimonial-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease;
}

.fb-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.fb-profile {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 12px;
}

.fb-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.fb-info {
  flex: 1;
}

.fb-name {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--primary);
}

.fb-location {
  font-size: 0.9rem;
  color: #666;
}

.fb-stars {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.fb-testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin: 0;
}

/* Logo Removed - Clean Design */

/* Hero Enhancements */
.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #ffeaa7;
  font-weight: 600;
}

.offer-badge {
  background: linear-gradient(45deg, #fd79a8, #fdcb6e);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  margin-bottom: 15px;
  display: inline-block;
  animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
  from { box-shadow: 0 0 10px rgba(253, 121, 168, 0.5); }
  to { box-shadow: 0 0 20px rgba(253, 121, 168, 0.8); }
}

.trust-indicators {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  width: 100%;
}

.trust-item:hover {
  transform: translateY(-1px);
}

.trust-icon {
  font-size: 1.1rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.trust-text {
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Pulse Animation for CTAs */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Social Proof Stats Bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  padding: 30px;
  background: linear-gradient(135deg, #6c5ce7, #a8e6cf);
  border-radius: 20px;
  max-width: 1000px;
  margin: 0 auto 50px auto;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Enhanced Support Cards */
.card-badge {
  background: var(--secondary);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 10px;
  display: inline-block;
}

/* Testimonials Section */
.testimonials-section {
  margin-top: 60px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 2px solid rgba(0,184,148,0.2);
  transition: transform 0.3s ease;
}

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

.stars {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--dark);
  line-height: 1.6;
}

.customer {
  font-weight: bold;
  color: var(--secondary);
}



/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #2d3436, #636e72);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.final-cta-text {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
}

.mega-cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--urgent), #ff6b6b);
  color: white;
  padding: 25px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 56, 56, 0.3);
  position: relative;
  overflow: hidden;
}

.mega-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.mega-cta-button:hover::before {
  left: 100%;
}

.mega-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 56, 56, 0.4);
}

.cta-subtitle {
  display: block;
  font-size: 1rem;
  margin-top: 5px;
  opacity: 0.9;
}

.final-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.benefit-item {
  background: rgba(255,255,255,0.1);
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: bold;
  border: 2px solid rgba(255,255,255,0.2);
}

.urgency-footer {
  background: var(--secondary);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: bold;
  margin-top: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .urgency-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .stats-bar {
    gap: 20px;
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .final-benefits {
    flex-direction: column;
    align-items: center;
  }
  
  .mega-cta-button {
    font-size: 1.4rem;
    padding: 20px 30px;
  }
  
  .final-cta-section h2 {
    font-size: 2rem;
  }
}

/* Features List - Remove double bullet points */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  padding: 8px 0;
}

/* Airlines Slideshow Styles - REMOVED (replaced with showcase) */



/* Mobile Responsiveness */
@media (max-width: 768px) {
  /* Prevent horizontal scroll on mobile */
  body {
    overflow-x: hidden;
  }
  
  * {
    box-sizing: border-box;
  }
  

  
  .hero {
    margin-top: 0;
    padding: 8rem 1rem 3rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    background-attachment: scroll;
  }
  
  .announcement-banner {
    top: 0;
    padding: 12px 15px;
    height: auto;
    max-height: 60px;
  }
  
  .announcement-content {
    flex-direction: row;
    gap: 10px;
    text-align: left;
    padding: 0;
    align-items: center;
    justify-content: space-between;
  }
  
  .announcement-text {
    text-align: left;
    font-size: 0.85rem;
    line-height: 1.2;
    flex: 1;
    margin-right: 10px;
  }
  
  .banner-right {
    gap: 8px;
    justify-content: flex-end;
    flex-shrink: 0;
  }
  
  .banner-cta-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  
  .countdown-timer {
    font-size: 0.8rem;
    padding: 4px 12px;
  }
  
  .hero-content {
    max-width: 100%;
    width: 100%;
    padding: 0 1rem;
    display: flex !important;
    flex-direction: column;
    gap: 2rem;
    grid-template-columns: none !important;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }
  
  /* Mobile: Hero text comes first */
  .hero-text {
    order: 1;
    text-align: center;
    padding: 0;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0.95;
  }
  
  /* Hide features list on mobile - too cluttered */
  .features-list {
    display: none;
  }
  
  /* Mobile: Special offer comes second */
  .special-offer {
    order: 2;
    max-width: 100%;
    padding: 1.5rem 1rem;
    margin: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
  }
  
  .offer-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin-bottom: 1rem;
  }
  
  .special-offer h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #333;
  }
  
  .special-offer p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    color: #555;
  }
  
  .cta-button {
    font-size: 1rem;
    padding: 14px 24px;
    margin-bottom: 1.2rem;
    width: 100%;
    display: block;
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  

  
  /* Airlines showcase mobile */
  .airlines-showcase {
    margin: 2rem 0;
    padding: 1rem 0;
  }
  
  .airline-logos-grid-main {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .airline-showcase-card {
    padding: 25px 20px;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .airline-logo-showcase {
    height: 80px;
    max-width: 150px;
    margin-bottom: 15px;
  }
  
  .airline-showcase-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .airline-showcase-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .airlines-footer p {
    font-size: 0.85rem;
    padding: 0 1rem;
    text-align: center;
  }
  
  /* Mobile styles for new components */
  .main-cta-block {
    padding: 20px;
    margin-top: 20px;
  }
  
  .cta-header {
    font-size: 1.1rem;
  }
  
  .phone-number-cta {
    font-size: 2rem;
  }
  
  .cta-benefits {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-benefit {
    font-size: 0.9rem;
  }
  
  .benefits-section {
    padding: 50px 20px;
  }
  
  .benefits-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 25px;
  }
  
  .benefit-card {
    padding: 25px 20px;
  }
  
  .benefit-icon {
    font-size: 2.5rem;
    min-height: 2.5rem;
  }
  
  .benefit-card h3 {
    font-size: 1.2rem;
  }
  
  .testimonials-section {
    padding: 50px 20px;
  }
  
  .testimonials-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .fb-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .fb-testimonial-card {
    padding: 20px;
  }
  
  .fb-avatar {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .fb-name {
    font-size: 1rem;
  }
  
  .fb-location {
    font-size: 0.8rem;
  }
  
  /* Centered CTA mobile */
  .center-cta-container {
    padding: 40px 20px;
  }
  
  .center-cta-box {
    padding: 30px 20px;
    max-width: 300px;
  }
  
  .center-cta-box .support-icon {
    width: 50px;
    height: 50px;
    padding: 12px;
  }
  
  .center-cta-box h4 {
    font-size: 1.2rem;
  }
  
  .center-cta-box p {
    font-size: 0.9rem;
  }
  
  .center-call-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .partner-benefits {
    gap: 10px;
    margin-top: 10px;
  }
  
  .benefit-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  /* Side Sticky CTA mobile */
  .side-sticky-cta {
    right: -180px;
    border-radius: 25px 0 0 25px;
  }
  
  .side-cta-content {
    padding: 14px 16px;
    gap: 10px;
  }
  
  .side-support-gif {
    width: 40px;
    height: 40px;
  }
  
  .side-cta-text span {
    font-size: 0.85rem;
  }
  
  .side-cta-text small {
    font-size: 0.72rem;
  }

  /* Trust bullets mobile */
  .trust-bullets-section {
    margin-top: 40px;
    padding: 0 1rem;
  }
  
  .trust-bullets-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .trust-bullets-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .trust-bullet-card {
    padding: 25px 15px;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .bullet-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
  
  .trust-bullet-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .trust-bullet-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Trust indicators mobile */
  .trust-indicators {
    margin-top: 1rem;
    gap: 8px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: center;
  }
  
  .trust-item {
    font-size: 0.85rem;
    justify-content: center;
    text-align: center;
    color: #333;
    width: 100%;
  }
  
  .trust-icon {
    font-size: 1rem;
    margin-right: 6px;
  }
  
  .trust-text {
    font-weight: 600;
  }
  
  /* Support features mobile */
  .support-features {
    padding: 2rem 1rem;
  }
  
  .support-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .support-card {
    padding: 1.5rem 1rem;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .support-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .support-card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .support-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  /* Section headers mobile */
  h1, h2, h3 {
    text-align: center;
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  /* Override any desktop grid/flex layouts on mobile */
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    grid-template-columns: none !important;
    gap: 2rem !important;
    max-width: 100% !important;
  }
  
  /* Ensure no horizontal overflow */
  .hero-text, .special-offer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    margin: 0 !important;
  }
  
  /* Make sure text doesn't overflow */
  .hero-text h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 1.8rem !important;
    text-align: center !important;
  }
  
  /* Force mobile hero text styles */
  .hero-text {
    text-align: center !important;
    padding: 0 !important;
    width: 100% !important;
  }
  
  /* Force special offer mobile styles */
  .special-offer {
    width: 100% !important;
    margin: 0 !important;
    padding: 1.5rem 1rem !important;
  }
  
  /* Testimonials mobile */
  .testimonials {
    padding: 2rem 1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  
  .testimonial-author {
    font-size: 0.85rem;
  }
  
  /* Final CTA mobile */
  .final-cta-section {
    padding: 3rem 1rem;
    margin-top: 2rem;
  }
  
  .final-cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .final-cta-text {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .mega-cta-button {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    margin: 0 auto;
    max-width: 280px;
    display: block;
    text-align: center;
  }
  
  .cta-subtitle {
    font-size: 0.8rem;
  }
  
  .final-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  
  .benefit-item {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
  
  /* Footer mobile */
  .footer {
    padding: 30px 20px;
    margin-bottom: 0;
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    display: block;
    visibility: visible;
    position: relative;
    z-index: 100;
  }
  
  .footer p {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    color: rgba(255,255,255,0.8);
  }
  
  .footer a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
  }
  
  .disclaimer {
    padding: 15px 15px;
    font-size: 0.75rem;
  }
  
  .disclaimer p {
    line-height: 1.05;
    padding: 0;
  }
  
  .trust-icon {
    font-size: 1rem;
  }
}

/* Trust Bullets Section */
.trust-bullets-section {
  margin-top: 60px;
  text-align: center;
  padding: 0 2rem;
}

.trust-bullets-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.trust-bullets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.trust-bullet-card {
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 2px solid rgba(0,184,148,0.2);
  transition: transform 0.3s ease;
  text-align: center;
}

.trust-bullet-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
}

.bullet-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.trust-bullet-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 700;
}

.trust-bullet-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Airlines Showcase Styles */
.airlines-showcase {
  margin: 40px 0;
  padding: 30px 0;
}

.airline-logos-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.airline-showcase-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 2px solid rgba(0,184,148,0.2);
  transition: transform 0.3s ease;
}

.airline-showcase-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.airline-logo-showcase {
  height: 120px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.airline-showcase-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 700;
}

.airline-showcase-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}
