/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Hero Section */
.hero-section {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 120px 0 80px;
   position: relative;
   overflow: hidden;
}

.hero-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
   opacity: 0.5;
}

.hero-content {
   position: relative;
   z-index: 2;
   color: white;
}

.hero-content h1 {
   font-size: 3.5rem;
   font-weight: 800;
   line-height: 1.2;
   margin-bottom: 1.5rem;
   animation: fadeInUp 0.8s ease;
}

.hero-content p {
   font-size: 1.25rem;
   opacity: 0.95;
   margin-bottom: 2rem;
   line-height: 1.8;
   animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
   animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn-hero-primary {
   background: white;
   color: var(--primary-color);
   padding: 1rem 2.5rem;
   border-radius: 50px;
   font-weight: 700;
   text-decoration: none;
   display: inline-block;
   transition: all 0.3s ease;
   box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-hero-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
   color: var(--primary-color);
}

.btn-hero-secondary {
   background: rgba(255, 255, 255, 0.2);
   color: white;
   padding: 1rem 2.5rem;
   border-radius: 50px;
   font-weight: 700;
   text-decoration: none;
   display: inline-block;
   border: 2px solid rgba(255, 255, 255, 0.5);
   backdrop-filter: blur(10px);
   transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
   background: rgba(255, 255, 255, 0.3);
   transform: translateY(-3px);
   color: white;
}

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

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* Hero Visual */
.hero-visual {
   position: relative;
   z-index: 2;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 2rem;
}

.payment-illustration {
   text-align: center;
   animation: fadeInUp 0.8s ease 0.3s backwards;
}

.payment-card {
   background: rgba(255, 255, 255, 0.15);
   backdrop-filter: blur(20px);
   border: 2px solid rgba(255, 255, 255, 0.3);
   border-radius: 30px;
   padding: 3rem 2.5rem;
   margin-bottom: 2rem;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
   animation: float 3s ease-in-out infinite;
}

.payment-card i {
   display: block;
   margin-bottom: 1rem;
   filter: drop-shadow(0 10px 20px rgba(102, 126, 234, 0.3));
}

.payment-card p {
   color: white;
   font-size: 1.25rem;
   font-weight: 700;
   margin: 0;
   text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.payment-icons {
   display: flex;
   gap: 1.5rem;
   justify-content: center;
   flex-wrap: wrap;
}

.icon-item {
   background: rgba(255, 255, 255, 0.2);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.3);
   padding: 1rem 1.5rem;
   border-radius: 50px;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   transition: all 0.3s ease;
   animation: fadeInUp 0.8s ease backwards;
}

.icon-item:nth-child(1) {
   animation-delay: 0.5s;
}

.icon-item:nth-child(2) {
   animation-delay: 0.6s;
}

.icon-item:nth-child(3) {
   animation-delay: 0.7s;
}

.icon-item:hover {
   background: rgba(255, 255, 255, 0.3);
   transform: translateY(-5px);
}

.icon-item i {
   font-size: 1.5rem;
   color: white;
}

.icon-item span {
   color: white;
   font-weight: 600;
   font-size: 1rem;
}

@keyframes float {

   0%,
   100% {
      transform: translateY(0px);
   }

   50% {
      transform: translateY(-20px);
   }
}

/* Features Section */
.features-section {
   padding: 80px 0;
   background: #f7fafc;
}

.section-title {
   text-align: center;
   margin-bottom: 3rem;
}

.section-title .subtitle {
   color: var(--primary-color);
   font-weight: 600;
   font-size: 0.95rem;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   margin-bottom: 0.5rem;
}

.section-title h2 {
   font-size: 2.5rem;
   font-weight: 800;
   color: var(--text-dark);
   margin-bottom: 1rem;
}

.section-title p {
   color: var(--text-light);
   font-size: 1.1rem;
   max-width: 600px;
   margin: 0 auto;
}

.feature-card {
   background: white;
   padding: 2.5rem 2rem;
   border-radius: 20px;
   text-align: center;
   transition: all 0.4s ease;
   height: 100%;
   border: 2px solid transparent;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
   transform: translateY(-10px);
   border-color: var(--primary-color);
   box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.feature-icon {
   width: 80px;
   height: 80px;
   background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
   border-radius: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 1.5rem;
   transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
   transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
   font-size: 2.5rem;
   color: white;
}

.feature-card h3 {
   font-size: 1.5rem;
   font-weight: 700;
   margin-bottom: 1rem;
   color: var(--text-dark);
}

.feature-card p {
   color: var(--text-light);
   line-height: 1.7;
   margin: 0;
}

/* Pricing Section */
.pricing-section {
   padding: 80px 0;
   background: white;
}

.pricing-card {
   background: white;
   border-radius: 20px;
   padding: 2.5rem 2rem;
   text-align: center;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.4s ease;
   height: 100%;
   border: 2px solid transparent;
   position: relative;
}

.pricing-card.featured {
   border-color: var(--primary-color);
   transform: scale(1.05);
   box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.pricing-badge {
   position: absolute;
   top: -15px;
   left: 50%;
   transform: translateX(-50%);
   background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
   color: white;
   padding: 0.5rem 1.5rem;
   border-radius: 50px;
   font-weight: 700;
   font-size: 0.85rem;
}

.pricing-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.pricing-card h3 {
   font-size: 1.75rem;
   font-weight: 800;
   margin-bottom: 1rem;
   color: var(--text-dark);
}

.pricing-card .price {
   font-size: 3rem;
   font-weight: 800;
   color: var(--primary-color);
   margin-bottom: 0.5rem;
}

.pricing-card .price span {
   font-size: 1rem;
   color: var(--text-light);
   font-weight: 500;
}

.pricing-card p {
   color: var(--text-light);
   margin-bottom: 2rem;
}

.pricing-features {
   list-style: none;
   padding: 0;
   margin: 2rem 0;
   text-align: left;
}

.pricing-features li {
   padding: 0.75rem 0;
   color: var(--text-dark);
   display: flex;
   align-items: center;
   gap: 0.75rem;
}

.pricing-features li i {
   color: var(--primary-color);
   font-size: 1.25rem;
}

.btn-pricing {
   background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
   color: white;
   padding: 0.875rem 2rem;
   border-radius: 50px;
   font-weight: 700;
   text-decoration: none;
   display: inline-block;
   transition: all 0.3s ease;
   width: 100%;
   border: none;
}

.btn-pricing:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
   color: white;
}

/* About Section */
.about-section {
   padding: 80px 0;
   background: #f7fafc;
}

.about-stats {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
}

.stat-item {
   text-align: center;
   padding: 2rem;
   background: white;
   border-radius: 15px;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
}

.stat-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

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

.stat-item h4 {
   font-size: 2rem;
   font-weight: 800;
   color: var(--text-dark);
   margin-bottom: 0.5rem;
}

.stat-item p {
   color: var(--text-light);
   margin: 0;
}

/* Contact Section */
.contact-section {
   padding: 80px 0;
   background: white;
}

.contact-card {
   background: #f7fafc;
   padding: 2rem;
   border-radius: 15px;
   text-align: center;
   transition: all 0.3s ease;
   height: 100%;
}

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

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

.contact-card h4 {
   font-size: 1.25rem;
   font-weight: 700;
   margin-bottom: 0.75rem;
   color: var(--text-dark);
}

.contact-card p {
   color: var(--text-light);
   margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
   .hero-content h1 {
      font-size: 2.5rem;
   }

   .section-title h2 {
      font-size: 2rem;
   }

   .pricing-card.featured {
      transform: scale(1);
   }
}

@media (max-width: 767px) {
   .hero-section {
      padding: 80px 0 60px;
   }

   .hero-content h1 {
      font-size: 2rem;
   }

   .hero-content p {
      font-size: 1.1rem;
   }

   .hero-buttons {
      flex-direction: column;
   }

   .btn-hero-primary,
   .btn-hero-secondary {
      width: 100%;
      text-align: center;
   }

   .features-section,
   .pricing-section,
   .about-section,
   .contact-section {
      padding: 60px 0;
   }
}