/* style.css - Enhanced Design & Brighter Color Palette for ReviewBoost */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #4361ee;
  --primary-light: #6c8aff;
  --primary-dark: #3046c9;
  --accent: #ff6b6b;
  --accent-light: #ff9292;
  --accent-dark: #e63e3e;
  --success: #4ade80;
  --error: #f87171;
  --dark: #111827;
  --light: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --glass-blur: 8px;
  --dark-glass-bg: rgba(18, 18, 18, 0.75);
  --dark-glass-border: rgba(255, 255, 255, 0.1);
}

/* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background-color: var(--gray-100);
  background-image: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
  background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.heading-xl { font-size: 2.5rem; font-weight: 700; }
.heading-lg { font-size: 2rem; }
.heading-md { font-size: 1.5rem; }
.heading-sm { font-size: 1.25rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid transparent;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: rgba(67, 97, 238, 0.85);
  color: white;
  border-color: var(--glass-border);
}

.btn-primary:hover {
  background: rgba(67, 97, 238, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-accent {
  background: rgba(255, 107, 107, 0.85);
  color: white;
  border-color: var(--glass-border);
}

.btn-accent:hover {
  background: rgba(255, 107, 107, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-primary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
  border-color: var(--primary-light);
}

.btn-outline-primary:hover {
  background: rgba(67, 97, 238, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: var(--glass-border);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Cards */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  transition: all 0.3s ease;
}

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

/* Pricing Cards */
.pricing-card {
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  background: white;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--accent);
}

.pricing-card .btn {
  width: 100%;
  margin-top: 1rem;
}

.pricing-card .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Forms */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--gray-800);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--gray-500);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-control:focus + .form-label,
.form-control.focused + .form-label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.75rem;
  padding: 0 0.25rem;
  background: var(--glass-bg);
  color: var(--primary);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: white;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  border-bottom: 1px solid var(--gray-200);
}

.nav.scrolled {
  padding: 0.75rem 2rem;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  color: var(--gray-800);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 30px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  width: 220px;
  padding: 0.75rem 0;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  transform: translateY(10px);
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: rgba(26, 35, 126, 0.05);
  color: var(--primary);
  border-left-color: var(--primary);
}

/* Testimonials */
.testimonial {
  position: relative;
  padding: 1.5rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: serif;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
  opacity: 0;
  animation: fade-in 0.5s ease forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .heading-xl { font-size: 2rem; }
  .heading-lg { font-size: 1.75rem; }
  .heading-md { font-size: 1.25rem; }
  .heading-sm { font-size: 1.25rem; }
  
  .card { padding: 1.25rem; }
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.bg-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 109, 0, 0.3) 0%, rgba(255, 109, 0, 0) 100%);
  z-index: 1;
}

.bg-gradient > * {
  position: relative;
  z-index: 2;
}

.shadow-hover {
  transition: all 0.3s;
}

.shadow-hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Flat Card, Table, Form Styling */
.card, .admin-table, .faq-answer, .faq-question, .testimonial-card, .pricing-card {
  border-radius: 0.5rem;
  background: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: background 0.2s, border 0.2s;
}

.card:hover, .admin-table tr:hover, .testimonial-card:hover, .pricing-card:hover {
  background: #fafafa;
  border-color: #d1d5db;
}

.flat-header, .flat-footer {
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.flat-footer {
  background: var(--primary);
  color: white;
}

.flat-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 0.25rem;
  font-weight: 600;
  transition: all 0.2s;
}

.flat-btn:hover, .flat-btn:focus {
  background: var(--primary-light);
  transform: translateY(-1px);
}

input:focus, button:focus, textarea:focus, a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.section-spacing {
  padding: 2rem 1rem;
}

@media (min-width: 640px) {
  .section-spacing { padding: 3rem 2rem; }
}
@media (min-width: 1024px) {
  .section-spacing { padding: 4rem 3rem; }
}

/* Touch targets for mobile */
.touch-target {
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Admin tables */
.admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.admin-table th, .admin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
}

.admin-table th {
  background: var(--gray-50);
  font-weight: 600;
}

.admin-table tr:hover {
  background: var(--gray-50);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--gray-200);
}

/* QR code styles */
.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  max-width: 400px;
  margin: 0 auto;
  background: white;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

/* Star rating */
.star-rating {
  display: flex;
  align-items: center;
}

.star-rating svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  margin-right: 2px;
}

/* Remove older dividers */
hr, .modern-divider, .gold-divider { display: none !important; }

/* Footer styling */
footer.bg-primary {
  background: var(--primary);
  color: white;
  padding-top: 3rem;
  padding-bottom: 1rem;
}

footer a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

footer a:hover {
  color: var(--accent);
}

footer h4 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

footer .text-gray-400 {
  color: rgba(255,255,255,0.6);
}

footer .border-gray-800 {
  border-color: rgba(255,255,255,0.1);
}

/* TheYTViews specific styles */
.service-box {
  padding: 1.5rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid var(--gray-200);
  text-align: center;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-box i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-box h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.package-card {
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.package-header {
  background: var(--primary);
  color: white;
  padding: 1rem;
  text-align: center;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.package-content {
  padding: 1.5rem;
}

.package-footer {
  padding: 1rem;
  background: var(--gray-50);
  text-align: center;
}

.tab-buttons {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--gray-600);
  position: relative;
  cursor: pointer;
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: white;
  border-radius: 50%;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dark-glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu.active {
  max-height: 100vh;
  border-bottom: 1px solid var(--dark-glass-border);
}

.mobile-nav-link {
  display: block;
  padding: 1rem;
  color: white;
  font-weight: 500;
  border-bottom: 1px solid var(--dark-glass-border);
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.mobile-dropdown-content.active {
  height: auto;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.75rem 1rem 0.75rem 2rem;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--dark-glass-border);
  font-size: 0.95em;
  transition: all 0.2s ease;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item:focus {
  background: rgba(255, 255, 255, 0.1);
}

/* Cards */
.feature-card, .service-card, .testimonial-card, .industry-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--glass-shadow);
}

.feature-card:hover, .service-card:hover, .industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon, .service-icon, .industry-icon {
  width: 64px;
  height: 64px;
  background: rgba(26, 35, 126, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Package Cards */
.package-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--glass-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.package-content {
  flex-grow: 1;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}

.package-footer {
  margin-top: 1.5rem;
}

.package-card-lg {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--glass-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card-lg:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-header-lg {
  text-align: center;
  margin-bottom: 1.5rem;
}

.package-price-lg {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.package-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

/* Testimonials */
.testimonial-card {
  height: 100%;
}

.testimonial-rating {
  color: var(--accent);
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-700);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 2px solid var(--glass-border);
}

/* Accordion */
.accordion-item {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header.active {
  background: rgba(255, 255, 255, 0.1);
}

.accordion-content {
  max-height: 0;
  padding: 0 1.25rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-content p {
  padding-bottom: 1.25rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--glass-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-point {
  position: absolute;
  left: -3rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--light);
  top: 0.5rem;
}

/* Comparison Table */
.comparison-table {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.comparison-table th, .comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
  background: rgba(26, 35, 126, 0.1);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Pricing Tabs */
.pricing-tabs {
  display: inline-flex;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.pricing-tab {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--gray-700);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-tab.active {
  background: rgba(26, 35, 126, 0.85);
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Cart Count */
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.cart-count.active {
  opacity: 1;
  transform: scale(1);
}

/* Social Icons */
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* Back to Top Button */
#back-to-top {
  z-index: 99;
  transition: all 0.3s ease;
}

#back-to-top:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

/* Notification */
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  padding: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease-out;
  color: var(--gray-800);
  font-weight: 500;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.notification .text-success {
  color: var(--success);
}

.notification .text-error {
  color: var(--error);
}

.notification .text-primary {
  color: var(--primary);
}

.notification .text-warning {
  color: var(--accent-dark);
}

/* Color contrast and accessibility improvements */
.text-white {
  color: #ffffff !important;
}

.opacity-90 {
  opacity: 0.9 !important;
}

/* Fix form control styling */
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

/* Fix newsletter styling */
.bg-gradient .card {
  background: rgba(255, 255, 255, 0.2);
}

.bg-gradient input.form-control {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.bg-gradient .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
} 

/* Express Checkout Styles */
.express-package {
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.express-package:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.express-package.selected {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.25);
}

/* Enhanced Hero Section */
.bg-gradient {
  background: linear-gradient(135deg, #4361ee 0%, #805ad5 100%);
  position: relative;
  overflow: hidden;
}

.bg-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.4) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(74, 222, 128, 0.4) 0%, transparent 30%);
  z-index: 0;
}

.bg-gradient > * {
  position: relative;
  z-index: 1;
}

/* Hero Section Enhancements */
.min-h-\[90vh\] {
  min-height: 90vh;
}

/* Floating Stats Banner */
.absolute.bottom-0 {
  z-index: 10;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Express Checkout Form */
#express-checkout {
  position: relative;
  z-index: 20;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#express-checkout:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

#express-checkout .form-control {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

#express-checkout .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#express-checkout .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

/* Trust Indicators */
.flex.items-center .fas.fa-check-circle {
  color: var(--accent);
}

/* Social Proof */
.flex.-space-x-2 img {
  transition: transform 0.3s ease;
}

.flex.-space-x-2:hover img:hover {
  transform: translateY(-5px);
}

/* Features Section */
.feature-card {
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(67, 97, 238, 0.1);
  color: var(--primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: rgba(67, 97, 238, 0.2);
  transform: scale(1.1);
}

/* Testimonials */
.testimonial-card {
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-rating i {
  color: var(--accent);
}

/* FAQ Section */
.accordion-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  cursor: pointer;
  border: none;
  text-align: left;
  font-weight: 500;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.3);
}

.accordion-header.active {
  background: rgba(67, 97, 238, 0.1);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
  margin: 0;
  padding-bottom: 1rem;
}

/* Final CTA */
.py-12.bg-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #4361ee 0%, #805ad5 100%);
}

.py-12.bg-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.4) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(74, 222, 128, 0.4) 0%, transparent 30%);
  z-index: 0;
}

.py-12.bg-primary > * {
  position: relative;
  z-index: 1;
}

/* Responsive Styles */
/* Mobile (default) */
.heading-xl { font-size: 2rem; }
.heading-lg { font-size: 1.75rem; }
.heading-md { font-size: 1.5rem; }
.heading-sm { font-size: 1.25rem; }

.express-package h3 {
  font-size: 1.25rem;
}

#express-checkout {
  margin-top: 2rem;
}

.absolute.bottom-0 {
  position: relative;
  margin-top: 2rem;
}

.card {
  padding: 1.25rem;
}

.feature-card, .testimonial-card {
  padding: 1.25rem;
}

/* Tablet */
@media (min-width: 768px) {
  .heading-xl { font-size: 2.25rem; }
  .heading-lg { font-size: 1.85rem; }
  
  .express-package h3 {
    font-size: 1.5rem;
  }
  
  #express-checkout {
    margin-top: 0;
  }
  
  .absolute.bottom-0 {
    position: absolute;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .feature-card, .testimonial-card {
    padding: 1.5rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .heading-xl { font-size: 2.5rem; }
  .heading-lg { font-size: 2rem; }
  
  .express-package h3 {
    font-size: 1.75rem;
  }
  
  .card {
    padding: 2rem;
  }
  
  .feature-card, .testimonial-card {
    padding: 2rem;
  }
} 

/* Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes shine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Animation Classes */
.animate-fadeIn {
  animation: fadeIn 0.8s ease forwards;
}

.animate-pulse {
  animation: pulse 3s infinite ease-in-out;
}

.animate-float {
  animation: float 6s infinite ease-in-out;
}

.animate-shine {
  background: linear-gradient(
    to right, 
    rgba(255, 255, 255, 0) 20%, 
    rgba(255, 255, 255, 0.3) 50%, 
    rgba(255, 255, 255, 0) 80%
  );
  background-size: 200% auto;
  animation: shine 3s infinite linear;
}

/* Staggered Animations */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }

.accordion-item:nth-child(1) { animation-delay: 0.1s; }
.accordion-item:nth-child(2) { animation-delay: 0.2s; }
.accordion-item:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced Button Effects */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(255,255,255,0.2), transparent);
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.btn:hover::after {
  transform: translateY(0);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

/* Enhanced Express Checkout */
#express-checkout {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#express-checkout:hover {
  transform: translateY(-5px);
}

.express-package {
  cursor: pointer;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.express-package::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.6), rgba(255,255,255,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.express-package:hover::before,
.express-package.border-accent::before {
  opacity: 1;
}

.express-package:hover {
  transform: translateY(-8px);
}

/* Enhanced Card Designs */
.feature-card, .testimonial-card {
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.feature-card::before, .testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(to bottom right, rgba(67, 97, 238, 0.5), rgba(255, 107, 107, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover::before, .testimonial-card:hover::before {
  opacity: 1;
}

.feature-icon {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Improved Accordion */
.accordion-header {
  transition: all 0.4s ease;
}

.accordion-header:hover {
  background: rgba(67, 97, 238, 0.05);
}

.accordion-header.active {
  background: rgba(67, 97, 238, 0.1);
}

.accordion-content {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 640px) {
  .heading-xl {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .heading-lg {
    font-size: 1.5rem;
  }
  
  .heading-md {
    font-size: 1.25rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
  }
  
  .express-package h3 {
    font-size: 1.125rem;
  }
  
  #express-checkout {
    padding: 1.25rem;
  }
  
  .feature-card, .testimonial-card, .accordion-item {
    margin-bottom: 1rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .grid {
    gap: 1rem !important;
  }
}

/* Tablet Specific Adjustments */
@media (min-width: 641px) and (max-width: 1024px) {
  #express-checkout {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .grid.md\:grid-cols-2 {
    gap: 2rem !important;
  }
  
  .grid.md\:grid-cols-3 {
    gap: 1.5rem !important;
  }
}

/* Enhanced Hover States for Desktop */
@media (min-width: 1025px) {
  .feature-card:hover,
  .testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  }
  
  .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
  }
  
  .feature-card, .testimonial-card {
    background: rgba(30, 30, 30, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .accordion-item {
    background: rgba(30, 30, 30, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .bg-white\/20 {
    background-color: rgba(30, 30, 30, 0.7);
  }
  
  .text-gray-600 {
    color: rgba(229, 231, 235, 0.8);
  }
}

/* Improved Loading Performance */
.feature-card img,
.testimonial-card img,
.testimonial-avatar img {
  content-visibility: auto;
}

/* Accessibility Improvements */
.btn:focus,
.express-package:focus,
.accordion-header:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-control:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
} 

/* How It Works Section Styling */
.py-16.bg-gray-50 {
  background: linear-gradient(135deg, rgba(245, 247, 250, 0.9) 0%, rgba(228, 233, 242, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.py-16.bg-gray-50::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(67, 97, 238, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 30%);
  z-index: 0;
}

.py-16.bg-gray-50 > .container {
  position: relative;
  z-index: 1;
}

/* How It Works Steps */
.w-20.h-20.rounded-full.bg-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.w-20.h-20.rounded-full.bg-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.3), transparent);
  z-index: 0;
}

.w-20.h-20.rounded-full.bg-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3) !important;
}

/* Process Step Number */
.w-20.h-20.rounded-full.bg-primary > .text-2xl {
  position: relative;
  z-index: 1;
}

/* Final CTA Section Styling */
.py-16.bg-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.py-16.bg-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(108, 138, 255, 0.2) 0%, transparent 40%);
  z-index: 0;
}

.py-16.bg-primary::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 70px;
  background: 
    linear-gradient(to bottom right, transparent, rgba(255, 255, 255, 0.05) 50%, transparent);
  transform: skewY(-1deg);
}

.py-16.bg-primary > .container {
  position: relative;
  z-index: 2;
}

.py-16.bg-primary .heading-lg {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.py-16.bg-primary .btn-accent {
  background: rgba(255, 107, 107, 0.95);
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.py-16.bg-primary .btn-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  transition: all 0.6s ease;
  z-index: 1;
}

.py-16.bg-primary .btn-accent:hover::before {
  left: 100%;
}

.py-16.bg-primary .btn-accent:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
  background: rgba(255, 107, 107, 1);
}

.py-16.bg-primary .btn-accent > * {
  position: relative;
  z-index: 2;
}

/* Responsive adjustments for How It Works and CTA */
@media (max-width: 640px) {
  .py-16.bg-gray-50,
  .py-16.bg-primary {
    padding: 3rem 0;
  }
  
  .w-20.h-20.rounded-full.bg-primary {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 1rem;
  }
  
  .w-20.h-20.rounded-full.bg-primary .text-2xl {
    font-size: 1.25rem;
  }
  
  .py-16.bg-primary .heading-lg {
    font-size: 1.5rem;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .py-16.bg-gray-50,
  .py-16.bg-primary {
    padding: 3.5rem 0;
  }
  
  .w-20.h-20.rounded-full.bg-primary {
    width: 70px !important;
    height: 70px !important;
  }
} 

/* Fix for How It Works dashed connector lines */
.border-dashed.border-primary\/30 {
  border-style: dashed;
  border-color: rgba(67, 97, 238, 0.3);
}

/* How It Works section connector line animation */
@media (min-width: 768px) {
  .border-dashed.border-primary\/30 {
    animation: dashAnimation 20s linear infinite;
    background-image: 
      linear-gradient(to right, rgba(67, 97, 238, 0.3) 50%, transparent 50%);
    background-size: 20px 1px;
    background-repeat: repeat-x;
    border: none;
    height: 1px;
    opacity: 0.7;
  }
  
  @keyframes dashAnimation {
    to {
      background-position: 200px 0;
    }
  }
}

/* Improved spacing for heading underlines */
.heading-lg .relative.inline-block {
  display: inline-block;
  padding-bottom: 0.5rem;
}

.heading-lg .relative.inline-block .absolute.-bottom-2 {
  bottom: 0;
}

/* Fix for CTA section text gradient */
.py-16.bg-primary .heading-lg {
  background: linear-gradient(to right, #ffffff, #f5f5f5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.py-16.bg-primary p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* Fix for CTA buttons */
.py-16.bg-primary .flex.flex-wrap.justify-center.gap-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.py-16.bg-primary .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.py-16.bg-primary .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

/* Fix for bottom CTA icons */
.py-16.bg-primary .mt-12.flex.flex-wrap .text-accent {
  color: rgba(255, 107, 107, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.py-16.bg-primary .mt-12.flex.flex-wrap .font-medium {
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile fixes for How It Works */
@media (max-width: 767px) {
  .grid.md\:grid-cols-3.gap-8 > div {
    margin-bottom: 2.5rem;
  }
  
  .grid.md\:grid-cols-3.gap-8 > div:last-child {
    margin-bottom: 0;
  }
  
  .w-20.h-20.rounded-full.bg-primary::before {
    content: "";
    position: absolute;
    height: 30px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(67, 97, 238, 0.5), transparent);
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  
  .grid.md\:grid-cols-3.gap-8 > div:last-child .w-20.h-20.rounded-full.bg-primary::before {
    display: none;
  }
}

/* Fix button alignment */
.btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
} 

/* Required animations for How It Works and CTA sections */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease forwards;
}

.animate-shine::before {
  animation: shine 1s ease;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(67, 97, 238, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
  }
} 

/* Enhanced responsive styles for hero section */

/* Base hero section styles update */
.min-h-\[90vh\] {
  min-height: 90vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 80px; /* Ensure consistent padding below header */
}

/* Hero section background elements */
.min-h-\[90vh\] .absolute.inset-0 {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

/* Mobile styles (small screens) */
@media (max-width: 640px) {
  .min-h-\[90vh\] {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 120px; /* Space for floating stats */
  }
  
  .grid.md\:grid-cols-2.gap-8 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .heading-xl {
    font-size: 1.75rem !important;
    line-height: 1.3;
  }
  
  .text-center.md\:text-left {
    text-align: center !important;
  }
  
  .text-xl.text-white\/90 {
    font-size: 1rem !important;
    line-height: 1.5;
  }
  
  .flex.flex-wrap.justify-center.md\:justify-start {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .flex.flex-wrap.justify-center.md\:justify-start > div {
    flex: 0 0 auto;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .flex.items-center.justify-center.md\:justify-start {
    justify-content: center !important;
  }
  
  /* Express checkout form on mobile */
  #express-checkout {
    padding: 1.25rem !important;
    margin: 0 -0.5rem;
    width: calc(100% + 1rem);
  }
  
  #express-checkout h2 {
    font-size: 1.25rem !important;
  }
  
  #express-checkout p {
    font-size: 0.875rem !important;
  }
  
  .express-package h3 {
    font-size: 1.25rem !important;
  }
  
  .express-package {
    padding: 0.75rem !important;
  }
  
  .btn-accent.text-lg {
    font-size: 1rem !important;
    padding: 0.75rem 1rem !important;
  }
  
  /* Floating stats on mobile */
  .absolute.bottom-0 {
    padding: 0.5rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .absolute.bottom-0 .flex.flex-wrap {
    flex-wrap: nowrap !important;
    padding: 0 1rem;
    width: max-content;
    min-width: 100%;
    justify-content: flex-start !important;
  }
  
  .absolute.bottom-0 .flex.items-center {
    margin-right: 1.5rem;
    flex: 0 0 auto;
  }
  
  .absolute.bottom-0 .w-12.h-12 {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }
  
  .absolute.bottom-0 p {
    font-size: 0.75rem !important;
    white-space: nowrap;
  }
}

/* Tablet styles */
@media (min-width: 641px) and (max-width: 1024px) {
  .min-h-\[90vh\] {
    min-height: 80vh;
    padding-top: 70px;
    padding-bottom: 100px;
  }
  
  .heading-xl {
    font-size: 2rem !important;
  }
  
  .grid.md\:grid-cols-2.gap-8 {
    gap: 2rem;
  }
  
  /* Adjust express checkout form on tablet */
  #express-checkout {
    padding: 1.5rem !important;
  }
  
  #express-checkout h2 {
    font-size: 1.5rem !important;
  }
  
  .express-package {
    padding: 0.875rem !important;
  }
  
  /* Adjust floating stats on tablet */
  .absolute.bottom-0 .flex.flex-wrap {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 1.5rem;
  }
}

/* Large desktop styles */
@media (min-width: 1025px) {
  .min-h-\[90vh\] {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-bottom: 70px;
    padding-top: 80px;
  }
  
  .grid.md\:grid-cols-2.gap-8 {
    gap: 3rem;
  }
  
  .heading-xl {
    font-size: 2.75rem !important;
    line-height: 1.2;
  }
  
  /* Enhance express checkout */
  #express-checkout {
    padding: 2rem !important;
  }
  
  /* Enhance floating stats */
  .absolute.bottom-0 {
    padding: 1rem 0;
  }
}

/* Fix for background decorative elements */
.min-h-\[90vh\] .absolute.-top-10.-right-10 {
  opacity: 0.8;
  z-index: -1;
  animation: pulse 8s ease-in-out infinite alternate;
}

.min-h-\[90vh\] .absolute.-bottom-20.-left-10 {
  opacity: 0.8;
  z-index: -1;
  animation: pulse 10s ease-in-out infinite alternate-reverse;
}

.min-h-\[90vh\] .absolute.top-40.left-1\/3 {
  opacity: 0.6;
  z-index: -1;
  animation: float 12s ease-in-out infinite;
}

/* Fix for items overflow/spacing */
.flex.flex-wrap.justify-center.md\:justify-start.gap-6 {
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .flex.flex-wrap.justify-center.md\:justify-start.gap-6 {
    gap: 0.5rem !important;
    margin-bottom: 1.5rem;
  }
}

/* Fix for social proof */
.flex.-space-x-3 {
  margin-right: 0.75rem;
}

/* Fix for mobile floating stats banner scrollbar appearance */
.absolute.bottom-0::-webkit-scrollbar {
  height: 0;
  width: 0;
  display: none;
}

.absolute.bottom-0 {
  -ms-overflow-style: none;
  scrollbar-width: none;
} 

/* Express package selection with improved Popular badge */
.express-package {
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.express-package.selected {
  border-color: var(--accent) !important;
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
  transform: translateY(-3px);
}

.express-package:hover {
  transform: translateY(-3px);
}

.express-package .absolute {
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Fixed Popular badge */
.express-package .absolute.-top-3 {
  transform: translateY(-50%);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Additional responsive adjustments */
@media (max-width: 640px) {
  .express-package.relative.pt-5 {
    padding-top: 1.5rem;
  }
  
  .express-package .absolute.-top-3 {
    font-size: 0.6rem;
    padding: 0.1rem 0.5rem;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .express-package.relative.pt-6 {
    padding-top: 1.75rem;
  }
} 