/* business-online.css - World-class booking page, premium light theme */
@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@200;300;400;500;600;700&display=swap');

.bo-section {
  min-height: 100vh;
  padding: 4rem 1rem;
  margin: 25px;
  border-radius: 23px;
  background: linear-gradient(180deg, #fefefe 0%, #f8fafc 50%, #f1f5f9 100%);
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0 50%, transparent);
}

.bo-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.bo-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.bo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
  margin-bottom: 1.5rem;
  animation: bo-pulse 2s infinite;
}

@keyframes bo-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.bo-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1rem 0;
}

.bo-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #475569;
  font-weight: 300;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto 3rem auto;
}

.bo-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.bo-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
}

.bo-icon {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.bo-cta-section {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  border-radius: 3rem;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 35px 80px -20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 3rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bo-cta-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 50px 100px -25px rgba(0, 0, 0, 0.15);
}

.bo-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.bo-price-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bo-price-value {
  font-size: clamp(3rem, 12vw, 5rem);
  font-weight: 300;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bo-time {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 500;
}

.bo-primary-cta {
  padding: 1.25rem 3.5rem;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  border: none;
  border-radius: 2rem;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px -10px rgba(5, 150, 105, 0.4);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.bo-primary-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.bo-primary-cta:hover::before {
  left: 100%;
}

.bo-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -15px rgba(5, 150, 105, 0.5);
}

.bo-disclaimer {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}

.bo-stats {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.bo-stat {
  text-align: center;
}

.bo-stat-number {
  display: block;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  color: #0f172a;
  line-height: 1;
}

.bo-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Tablet & Mobile */
@media (max-width: 768px) {
  .bo-features {
    gap: 2rem;
  }
  
  .bo-stats {
    justify-content: center;
  }
  
  .bo-cta-section {
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .bo-section {
    padding: 2rem 1rem;
  }
  
  .bo-features {
    flex-direction: column;
    gap: 1.5rem;
  }
}








/* added */
.cta-buttons {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}

/* COMMON */
.cta-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 34px;
  border-radius: 999px; /* pill shape */
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #4f6cff;
  color: #ffffff;
  box-shadow:
    0 12px 30px rgba(79, 108, 255, 0.35),
    0 0 0 6px rgba(79, 108, 255, 0.08);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 40px rgba(79, 108, 255, 0.45),
    0 0 0 8px rgba(79, 108, 255, 0.12);
}

/* SECONDARY BUTTON */
.btn-secondary {
  background: #ffffff;
  color: #111111;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
  background: #f9f9f9;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}








/* added 2 */

.features-section {
  margin-top: 120px;
  text-align: center;
}

.features-section h2 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.features-subtitle {
  margin-top: 14px;
  font-size: 1.1rem;
  color: #666;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* GRID */
.features-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.feature-card {
  padding: 36px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  text-align: left;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: #555;
  line-height: 1.6;
}

/* HOVER */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.09);
}












/* added 3 */

.final-cta-single {
  text-align: center;
  padding: 140px 24px 160px;
  background: #ffffff;
}

.final-cta-single h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.final-cta-single p {
  margin-top: 16px;
  font-size: 1.1rem;
  color: #666;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTON */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
  height: 58px;
  padding: 0 38px;
  border-radius: 999px;
  background: #4f6cff;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow:
    0 14px 34px rgba(79, 108, 255, 0.35),
    0 0 0 6px rgba(79, 108, 255, 0.08);
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 46px rgba(79, 108, 255, 0.45),
    0 0 0 8px rgba(79, 108, 255, 0.12);
}

.cta-primary:active {
  transform: scale(0.97);
}
