/* SINKHRON - Whispering Service Page Styles (Minimalistic & Airy) */
/* ================================================================= */

/* Page Container - Softer top padding */
.container.py-5 {
  padding-top: calc(var(--space-2xl) + 50px) !important;
  padding-bottom: var(--space-2xl);
}

/* Hero Section - Minimalistic gradient */
.hero-section {
  background: linear-gradient(47deg, rgba(255, 255, 255, 1) 0%, rgb(244 58 9 / 15%) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  color: var(--text-inverse);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
}

.hero-section * {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  font-weight: var(--font-weight-bold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  margin-bottom: var(--space-md);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.hero-section .lead {
  color: var(--text-primary);
  font-size: 1.125rem;
  text-align: justify;
  line-height: 1.6;
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-medium);
  max-width: 95%;
  text-shadow: 0 0.3px 0.5px rgba(0, 0, 0, 0.3);
}

/* Illustration Placeholder */
.illustration-placeholder {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  text-align: center;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  transition: all var(--duration-normal) var(--ease-out);
}

.illustration-placeholder:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.placeholder-content i {
  opacity: 0.6;
  margin-bottom: var(--space-md);
}

.placeholder-content p {
  font-style: italic;
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
}

/* Hero Features - More compact */
.hero-features {
  margin-top: var(--space-lg);
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  backdrop-filter: var(--backdrop-blur-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--duration-normal) var(--ease-out);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.feature-item i {
  color: var(--color-primary);
  font-size: 1.125rem;
  margin-right: var(--space-sm);
}

.feature-item span {
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  text-shadow: 0 0.3px 0.5px rgba(0, 0, 0, 0.3);
  font-size: 0.95rem;
}

/* Service Description - Minimalistic */
.service-description {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-2xl);
  border: 1px solid rgba(244, 58, 9, 0.08);
}

.service-description h2 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  margin-bottom: var(--space-lg);
  /* font-size: clamp(1.5rem, 2.5vw, 2rem); */
  position: relative;
}

.service-description h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-button-shape);
  border-radius: 2px;
}

.service-description p {
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: justify;
  font-size: 1.125rem;
  margin: 0;
}

/* Advantages Section - Clean grid */
.advantages h2 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  margin-bottom: var(--space-xl);
  /* font-size: clamp(1.5rem, 2.5vw, 2rem); */
  position: relative;
}

.advantages h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-button-shape);
  border-radius: 2px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid rgba(244, 58, 9, 0.1);
  backdrop-filter: blur(5px);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 58, 9, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.advantage-icon {
  color: var(--color-primary);
  opacity: 0.8;
}

.advantage-icon i {
  color: inherit;
}

.advantage-card h5 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.advantage-card p {
  color: var(--text-secondary);
  font-family: var(--font-primary-GMB);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
  text-align: justify;
}

/* Use Cases Section */
.use-cases h2 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  margin-bottom: var(--space-xl);
  /* font-size: clamp(1.5rem, 2.5vw, 2rem); */
  position: relative;
}

.use-cases h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-button-shape);
  border-radius: 2px;
}

.use-case-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid rgba(244, 58, 9, 0.08);
  height: 100%;
}

.use-case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 58, 9, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.use-case-card .card-body {
  padding: var(--space-lg);
}

.use-case-card h5 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.use-case-card h5 i {
  color: var(--color-primary);
  margin-right: var(--space-sm);
}

.use-case-card p {
  color: var(--text-secondary);
  font-family: var(--font-primary-GMB);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
  text-align: justify;
}

/* Limitations Section */
.limitations h2 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  margin-bottom: var(--space-xl);
  /* font-size: clamp(1.5rem, 2.5vw, 2rem); */
  position: relative;
}

.limitations h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ffc107 0%, #fd7e14 100%);
  border-radius: 2px;
}

.limitations .alert {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(253, 126, 20, 0.1) 100%);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(5px);
}

.limitations .alert h5 {
  color: #b45309;
  font-family: var(--font-primary-GEB);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
}

.limitations .alert h5 i {
  color: #f59e0b;
}

.limitations .alert ul {
  margin-bottom: 0;
  padding-left: var(--space-lg);
}

.limitations .alert li {
  color: var(--text-secondary);
  font-family: var(--font-primary-GMB);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
}

/* Pricing Section - Simplified */
.pricing-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(194, 237, 218, 0.1) 100%);
  padding: var(--space-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.pricing-section h2 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  text-align: center;
  margin-bottom: var(--space-xl);
  /* font-size: clamp(1.5rem, 2.5vw, 2rem); */
  position: relative;
}

.pricing-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-button-shape);
  border-radius: 2px;
}

/* Price Cards - Minimalistic and featured */
.price-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid rgba(244, 58, 9, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 58, 9, 0.25);
  background: rgba(255, 255, 255, 0.95);
}

.price-card.featured {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(104, 211, 136, 0.15);
}

.price-card.featured:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(104, 211, 136, 0.25);
}

.price-header {
  background: transparent;
  padding: var(--space-lg);
  border-bottom: 1px solid rgba(244, 58, 9, 0.1);
  position: relative;
}

.price-card.featured .price-header {
  border-bottom-color: rgba(104, 211, 136, 0.2);
}

.price-header h5 {
  color: var(--text-primary);
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-semibold);
  margin: 0 0 var(--space-sm) 0;
  font-size: 1.125rem;
  line-height: 1.4;
  text-align: center;
}

.price-header .badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}

.price-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  align-items: center;
  text-align: center;
}

.price {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  font-family: var(--font-primary-GEB);
  margin-bottom: var(--space-sm);
}

.price-card.featured .price {
  color: var(--color-primary);
}

.price-body small {
  font-size: 0.8rem;
  margin-bottom: var(--space-md);
  display: block;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
  width: 100%;
}

.price-features li {
  padding: var(--space-xs) 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-family: var(--font-primary-GMB);
  position: relative;
  padding-left: var(--space-lg);
}

.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

/* Button Styles - Soft and minimalistic */
.btn {
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* border: none; */
  cursor: pointer;
  font-size: 0.9rem;
}

/* Override Bootstrap primary button styles */
.btn-primary {
  background: var(--gradient-button-shape) !important;
  color: var(--text-inverse) !important;
  border-color: var(--color-primary) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-grandpa-orange) 0%, var(--color-brightly-orange) 100%) !important;
  color: var(--text-inverse) !important;
  border-color: var(--color-primary) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:focus,
.btn-primary:focus-visible {
  background: var(--gradient-button-shape) !important;
  color: var(--text-inverse) !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(244, 58, 9, 0.25) !important;
}

.btn-primary:active,
.btn-primary.active {
  background: linear-gradient(135deg, var(--color-grandpa-orange) 0%, var(--color-brightly-orange) 100%) !important;
  color: var(--text-inverse) !important;
  border-color: var(--color-primary) !important;
}

/* Override Bootstrap outline primary button styles */
.btn-outline-primary {
  background: transparent !important;
  color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.btn-outline-primary:hover {
  background: var(--gradient-button-shape) !important;
  color: var(--text-inverse) !important;
  border-color: var(--color-primary) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-primary:focus,
.btn-outline-primary:focus-visible {
  background: transparent !important;
  color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(244, 58, 9, 0.25) !important;
}

.btn-outline-primary:active,
.btn-outline-primary.active {
  background: var(--gradient-button-shape) !important;
  color: var(--text-inverse) !important;
  border-color: var(--color-primary) !important;
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
}

/* Additional Languages Alert */
.additional-languages .alert {
  background: linear-gradient(47deg, rgba(255, 255, 255, 1) 0%, rgb(244 58 9 / 15%) 100%);
  border: 1px solid var(--color-primary);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.additional-languages .alert i {
  color: var(--color-primary);
}

/* FAQ Section - Minimalistic */
.faq__block {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 58, 9, 0.08);
  box-shadow: var(--shadow-sm);
}

.faq__block h2 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  text-align: center;
  /* margin-bottom: var(--space-lg); */
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  position: relative;
}

.faq__block h2::after {
  /* content: ''; */
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-grandpa-orange) 100%);
  border-radius: 2px;
}

.accordion-item {
  border: none;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-xs);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid rgba(244, 58, 9, 0.05);
}

.accordion-item:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(244, 58, 9, 0.12);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-md);
  position: relative;
  width: 100%;
  text-align: left;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: none;
  font-size: 1rem;
  line-height: 1.5;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(244, 58, 9, 0.03) 0%, rgba(255, 183, 102, 0.03) 100%);
  color: var(--color-primary);
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-button::after {
  content: '+';
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  transition: all var(--duration-normal) var(--ease-out);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(244, 58, 9, 0.08);
}

.accordion-button:not(.collapsed)::after {
  content: '';
  color: var(--text-inverse);
  background: var(--color-primary);
}

.accordion-body {
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-sm) var(--space-md) var(--space-md);
  border-top: 1px solid rgba(244, 58, 9, 0.08);
  margin: 0;
}

.accordion-body p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-medium);
  text-align: justify;
  font-size: 0.9rem;
}

/* CTA Section - Soft and inviting */
.cta-section {
  background: linear-gradient(47deg, rgba(255, 255, 255, 1) 0%, rgb(244 58 9 / 15%) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  color: var(--text-inverse);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

.cta-section * {
  position: relative;
  z-index: 2;
}

.cta-section h3 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  margin-bottom: var(--space-md);
  text-shadow: 0 0.3px 0.5px rgba(0, 0, 0, 0.3);
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
}

.cta-section p {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.6;
  font-family: var(--font-primary-GMB);
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  text-align: center;
  text-shadow: 0 0.3px 0.5px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 180px;
}

/* Responsive Design - Compact for mobile */
@media (max-width: 1199.98px) {
  .container.py-5 {
    padding-top: calc(var(--space-xl) + 45px) !important;
  }
  
  .hero-section {
    padding: var(--space-xl);
  }
}

@media (max-width: 991.98px) {
  .hero-section .row {
    flex-direction: column;
  }
  
  .hero-section .col-lg-6:first-child {
    margin-bottom: var(--space-lg);
    text-align: center;
  }
  
  .hero-features {
    max-width: 500px;
    margin: var(--space-lg) auto 0;
  }
  
  .pricing-section {
    padding: var(--space-lg);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 767.98px) {
  .container.py-5 {
    padding-top: calc(var(--space-lg) + 35px) !important;
  }
  
  .hero-section {
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
  
  .service-description {
    padding: var(--space-lg);
  }
  
  .advantage-card {
    padding: var(--space-md);
  }
  
  .faq__block {
    padding: var(--space-lg);
  }
  
  .cta-section {
    padding: var(--space-xl);
  }
}

@media (max-width: 575.98px) {
  .container.py-5 {
    padding-top: calc(var(--space-md) + 30px) !important;
  }
  
  .hero-section {
    padding: var(--space-md);
  }
  
  .feature-item {
    padding: var(--space-xs) var(--space-sm);
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }
  
  .advantage-card {
    padding: var(--space-sm);
  }
  
  .accordion-button {
    padding: var(--space-sm);
    font-size: 0.9rem;
  }
  
  .accordion-button::after {
    width: 16px;
    height: 16px;
    font-size: 0.9rem;
    right: var(--space-sm);
  }
}

/* Animation Enhancements - Subtle */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section,
.service-description,
.advantage-card,
.use-case-card,
.price-card,
.faq__block,
.cta-section {
  animation: fadeInUp var(--duration-elegant) var(--ease-out);
}

/* Stagger animation delays */
.advantage-card:nth-child(1) { animation-delay: 0.1s; }
.advantage-card:nth-child(2) { animation-delay: 0.15s; }
.advantage-card:nth-child(3) { animation-delay: 0.2s; }
.advantage-card:nth-child(4) { animation-delay: 0.25s; }

.use-case-card:nth-child(odd) { animation-delay: 0.1s; }
.use-case-card:nth-child(even) { animation-delay: 0.2s; }

/* Focus and accessibility */
.btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .hero-section,
  .advantage-card,
  .use-case-card,
  .price-card,
  .faq__block,
  .cta-section {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
  
  .btn {
    display: none;
  }
  
  .container.py-5 {
    padding-top: 0 !important;
  }
}