/* components/snapppay-info/snapppay-info.css */

.snapppay-page {
  font-family: inherit;
  color: #334155;
  background-color: #fafbfd;
  overflow-x: hidden;
  padding-bottom: 50px;
}

.snapppay-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Hero Section ── */
.snapppay-hero {
  background: linear-gradient(180deg, #f0fdfa 0%, #fafbfd 100%);
  padding: 80px 0 60px;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  text-align: right;
}

.snapppay-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 148, 136, 0.1);
  color: #0f766e;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 32px;
  font-weight: 850;
  color: #0f172a;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 20px;
}

.hero-content h1 .highlight {
  color: #0d9488;
  position: relative;
}

.hero-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 30px;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f766e;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
}

.btn-primary-teal:hover {
  background: #0d9488;
  transform: translateY(-2px);
}

.btn-secondary-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #cbd5e1;
  transition: transform 0.2s, background 0.2s;
}

.btn-secondary-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

/* Floating visual boxes */
.hero-visual {
  position: relative;
  height: 300px;
  background: url('../../assets/sadaflogo.webp') no-repeat center;
  background-size: contain;
  opacity: 0.85;
}

.promo-card-floating {
  position: absolute;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 12px;
  top: 40px;
  right: 20px;
  animation: floatAnim 4s ease-in-out infinite;
}

.promo-card-floating.secondary {
  top: 170px;
  left: 20px;
  right: auto;
  animation: floatAnim 4s ease-in-out infinite;
  animation-delay: 2s;
}

.promo-card-floating .icon-circle {
  width: 44px;
  height: 44px;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.promo-card-floating.secondary .icon-circle {
  background: rgba(233, 185, 78, 0.15);
  color: #b45309;
}

.promo-info strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
}

.promo-info span {
  font-size: 11px;
  color: #64748b;
}

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

/* ── Section Titles ── */
.section-title-center {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
}

.section-desc-center {
  font-size: 14px;
  color: #64748b;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ── Benefits Section ── */
.snapppay-benefits {
  padding: 60px 0;
}

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

.benefit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px 24px;
  text-align: right;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
}

.benefit-card .b-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 148, 136, 0.08);
  color: #0d9488;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ── Steps Section ── */
.snapppay-steps {
  padding: 60px 0;
  background-color: #f8fafc;
}

.steps-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}

.step-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  position: relative;
  text-align: right;
}

.step-number {
  width: 32px;
  height: 32px;
  background: #0f766e;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 12.5px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ── FAQ Section ── */
.snapppay-faq {
  padding: 60px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 24px;
  text-align: right;
}

.faq-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f766e;
  margin-top: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-item h4 i {
  font-size: 16px;
  color: #0d9488;
}

.faq-item p {
  font-size: 13px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  padding-right: 24px;
}

/* ── CTA Section ── */
.snapppay-cta {
  padding: 40px 0 60px;
}

.btn-cta-gold:hover {
  transform: scale(1.05);
  background: #f59e0b;
}

/* ── Responsive Styling ── */
@keyframes floatAnimMobile {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    height: 240px;
    max-width: 100%;
  }
  
  .promo-card-floating {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
    animation: floatAnimMobile 4s ease-in-out infinite;
  }
  
  .promo-card-floating.secondary {
    left: 50%;
    transform: translateX(-50%);
    top: 130px;
    animation: floatAnimMobile 4s ease-in-out infinite;
    animation-delay: 2s;
  }
}

