/* components/vibe-refah-info/vibe-refah-info.css */

.vibe-refah-page {
  font-family: inherit;
  color: #1e293b;
  background-color: #f8fafc;
  padding-bottom: 60px;
}

/* Hero Section */
.vibe-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f766e 100%);
  color: #ffffff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.vibe-hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(13, 148, 136, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}

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

@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.vibe-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.vibe-hero h1 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 18px;
}

.vibe-hero h1 .highlight {
  color: #38bdf8;
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vibe-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 540px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .vibe-hero p {
    margin-left: auto;
    margin-right: auto;
  }
}

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

@media (max-width: 992px) {
  .hero-actions {
    justify-content: center;
  }
}

.btn-primary-refah {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #fff;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.4);
  transition: all 0.3s ease;
}

.btn-primary-refah:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 15px 25px -5px rgba(2, 132, 199, 0.6);
}

.btn-secondary-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Hero Visual Cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

@media (max-width: 992px) {
  .hero-visual {
    align-items: center;
    margin-top: 20px;
  }
}

.vibe-card-floating {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.icon-circle-refah {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0284c7, #0d9488);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.icon-circle-gold {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eab308, #ca8a04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.vibe-info strong {
  display: block;
  font-size: 16px;
  color: #ffffff;
}

.vibe-info span {
  font-size: 13px;
  color: #94a3b8;
}

/* Features Grid */
.vibe-features {
  padding: 70px 0;
}

.section-title-center {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-desc-center {
  text-align: center;
  font-size: 15px;
  color: #64748b;
  margin-bottom: 45px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #0284c7;
  box-shadow: 0 20px 25px -5px rgba(2, 132, 199, 0.1);
}

.f-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: #f0f9ff;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f172a;
}

.feature-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* Audience Section */
.vibe-audience {
  background: #ffffff;
  padding: 70px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.audience-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .audience-wrapper {
    grid-template-columns: 1fr;
  }
}

.sub-tag {
  color: #0284c7;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.audience-text h2 {
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
  margin: 10px 0 15px;
}

.audience-text p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.audience-list li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.audience-list li i {
  color: #0d9488;
  margin-top: 4px;

}

.audience-note {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.refah-badge-box {
  background: linear-gradient(135deg, #0f172a, #0369a1);
  color: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 35px rgba(3, 105, 161, 0.25);
}

.refah-badge-box i {
  font-size: 45px;
  color: #38bdf8;
  margin-bottom: 18px;
}

.refah-badge-box h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.refah-badge-box p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
}

.refah-badge-box a {
  color: #38bdf8;
  text-decoration: underline;

}

/* Steps Timeline */
.vibe-steps-section {
  padding: 70px 0;
}

.vibe-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-step {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 24px;
  border-radius: 16px;
  align-items: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.step-num {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0284c7;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

/* Other Methods */
.vibe-other-methods {
  padding: 30px 0;
}

.other-methods-card {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.other-methods-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.other-methods-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.links-flex {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-snapppay-link {
  background: #10b981;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

.btn-optometry-link {
  background: #0f766e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

/* FAQ */
.vibe-faq {
  padding: 60px 0;
}

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

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

.faq-item h3 {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h3 i {
  color: #0284c7;
}

.faq-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* CTA */
.vibe-cta {
  padding: 30px 0 60px;
}

.cta-box {
  background: linear-gradient(135deg, #0284c7 0%, #0f766e 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(2, 132, 199, 0.4);
}

.cta-box h2 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 15px;
  color: #e0f2fe;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-gold-action {
  background: #fbbf24;
  color: #000;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
}

.btn-white-action {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
}
