/* Page Content */

.page-content {
  position: relative;
  padding: 180px 0 200px;
  text-align: center;
  color: white;
  overflow: hidden;
}

.page-content .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-content .background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.page-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.page-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background-color: var(--white);
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stats-content h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.stats-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--primary-light);
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.stat-text {
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 600;
}

/* Information Section */
.info-section {
  padding: 80px 0;
  background-color: var(--white);
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.info-content h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.info-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--gray);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--light);
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
  background-color: white;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(1, 118, 211, 0.05);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  background-color: white;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
}

.cta-button-light {
  background-color: white;
  color: var(--primary);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

.cta-button-light:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.4);
}

/* Vault Customization Section */
.vault-customization-wrapper {
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  padding: 100px 20px;
}

.vault-customization {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  border-radius: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 80px 40px;
  position: relative;
}

.vault-customization::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
}

.vault-customization h2 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  font-weight: 800;
  background: linear-gradient(135deg, #1a1a70, #4a4a9e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.vault-customization h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  border-radius: 2px;
}

.vault-customization .intro {
  max-width: 900px;
  margin: 50px auto 70px;
  color: #555;
  line-height: 1.8;
  font-size: 1.25rem;
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.vault-card {
  background: #fff;
  border-radius: 25px;
  padding: 50px 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: floatCard 6s ease-in-out infinite;
}

.vault-card:nth-child(2) {
  animation-delay: 0.5s;
}
.vault-card:nth-child(3) {
  animation-delay: 1s;
}
.vault-card:nth-child(4) {
  animation-delay: 1.5s;
}
.vault-card:nth-child(5) {
  animation-delay: 2s;
}
.vault-card:nth-child(6) {
  animation-delay: 2.5s;
}

.vault-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.vault-card.red::before {
  background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
}
.vault-card.green::before {
  background: linear-gradient(90deg, #4ecdc4, #6de0d7);
}
.vault-card.blue::before {
  background: linear-gradient(90deg, #45b7d1, #6bcae2);
}
.vault-card.purple::before {
  background: linear-gradient(90deg, #9c27b0, #ba68c8);
}
.vault-card.teal::before {
  background: linear-gradient(90deg, #009688, #4db6ac);
}
.vault-card.orange::before {
  background: linear-gradient(90deg, #ff9800, #ffb74d);
}

.vault-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.vault-card:hover::before {
  transform: scaleX(1);
}

.vault-card .icon {
  font-size: 4.5rem;
  margin-bottom: 30px;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.vault-card.red .icon {
  color: #ff6b6b;
  background: linear-gradient(135deg, #fff0f0, #ffe0e0);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.vault-card.green .icon {
  color: #4ecdc4;
  background: linear-gradient(135deg, #f0fffd, #e0fff5);
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.vault-card.blue .icon {
  color: #45b7d1;
  background: linear-gradient(135deg, #f0f9ff, #e0f4ff);
  box-shadow: 0 10px 30px rgba(69, 183, 209, 0.2);
}

/* Add these missing styles for purple, teal and orange vault cards */
.vault-card.purple .icon {
  color: #9c27b0;
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
}

.vault-card.teal .icon {
  color: #009688;
  background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
  box-shadow: 0 10px 30px rgba(0, 150, 136, 0.2);
}

.vault-card.orange .icon {
  color: #ff9800;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
}

.vault-card:hover .icon {
  transform: rotateY(180deg) scale(1.1);
}

.vault-card h3 {
  margin-bottom: 20px;
  color: #1a1a40;
  font-size: 1.6rem;
  font-weight: 700;
}

.vault-card:hover h3 {
  transform: translateY(-5px);
}

.vault-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Highlight Colors */
.highlight-red {
  color: #ff6b6b;
  font-weight: 700;
}
.highlight-green {
  color: #4ecdc4;
  font-weight: 700;
}
.highlight-blue {
  color: #45b7d1;
  font-weight: 700;
}
.highlight-purple {
  color: #9c27b0;
  font-weight: 700;
}
.highlight-teal {
  color: #009688;
  font-weight: 700;
}
.highlight-orange {
  color: #ff9800;
  font-weight: 700;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .vault-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-content {
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vault-customization {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .page-content h1 {
    font-size: 2.2rem;
  }

  .page-content p {
    font-size: 1.1rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .stats-content h2,
  .info-content h2,
  .cta-section h2 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .vault-customization {
    padding: 50px 20px;
  }

  .vault-customization h2 {
    font-size: 2.5rem;
  }

  .vault-customization .intro {
    font-size: 1.1rem;
    margin: 40px auto 50px;
  }

  .vault-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .vault-card {
    padding: 40px 25px;
  }

  .vault-card .icon {
    font-size: 3.5rem;
    width: 100px;
    height: 100px;
  }

  .vault-card h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .page-content {
    padding: 120px 0 80px;
  }

  .page-content h1 {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .vault-customization h2 {
    font-size: 2rem;
  }

  .vault-customization .intro {
    font-size: 1rem;
  }

  .vault-card {
    padding: 30px 20px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }
}
