/* Pricing Page Specific Styles */
.pricing-hero {
  position: relative;
  background: linear-gradient(135deg, #00a4e4, #2d388a, #00a99d, #7d3f98, #ed1c24);
  background-size: 400% 400%;
  color: white;
  padding: 120px 0 100px;
  text-align: center;
  overflow: hidden;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjUwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDMpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
  opacity: 0.3;
  z-index: 1;
}

.pricing-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-hero h1 {
  font-size: 3.5rem;
  margin: 0 0 1.5rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  animation: fadeInUp 1s ease-out;
}

.pricing-hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
  animation: fadeInUp 1s ease-out 0.2s both;
}

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

/* Brand floating elements */
.brand-floaters {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.brand-floater {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(2px);
  animation: float 15s infinite linear;
  pointer-events: none;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-100px) rotate(720deg);
  }
}

/* Trust badges */
.brand-trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.trust-badge i {
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  margin-top: 5px;
  font-size: 1.2rem;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2.5rem;
  }
  
  .pricing-hero p {
    font-size: 1.2rem;
  }
  
  .brand-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .trust-badge {
    width: 80%;
    justify-content: center;
  }
}

/* Brand Sections */
.brand-section {
  margin: 3rem 0;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
}

.brand-section:last-child {
  border-bottom: none;
}

.brand-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.brand-logo {
  max-width: 120px;
  margin-right: 2rem;
}

.brand-info h2 {
  margin: 0;
  color: #2a7fba;
  font-size: 2rem;
}

.brand-description {
  color: #666;
  margin: 0.5rem 0 0;
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.aid-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

.aid-image {
  height: 200px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.aid-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.aid-details {
  padding: 1.5rem;
}

.aid-details h3 {
  margin: 0 0 1rem;
  color: #333;
  font-size: 1.25rem;
}

.aid-features {
  margin: 1rem 0;
  min-height: 100px;
}

.aid-features p {
  margin: 0.5rem 0;
  color: #555;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.aid-features i {
  color: #2a7fba;
  margin-right: 0.5rem;
  width: 20px;
  text-align: center;
}

.aid-price {
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2a7fba;
  display: block;
  margin-bottom: 0.25rem;
}

.price-note {
  font-size: 0.85rem;
  color: #777;
}

.cta-btn {
  display: inline-block;
  background: #2a7fba;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: #1e6a99;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 127, 186, 0.3);
}

/* Filters */
.price-filters {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-group label {
  font-weight: 600;
  color: #444;
}

.filter-group select {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: white;
  min-width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
  .brand-header {
    flex-direction: column;
    text-align: center;
  }
  
  .brand-logo {
    margin: 0 0 1rem 0;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .price-filters {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-group select {
    width: 100%;
  }
}
