/* Muhasebe Page Specific Styles */

/* Interactive Tabs */
.interactive-tabs {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tabs-navigation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--border-radius-xl);
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.tab-button.active {
  background: rgba(37, 99, 235, 0.1);
  border-color: #2563EB;
  color: #0F172A;
}

.tab-button:hover:not(.active) {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.tab-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  flex-shrink: 0;
}

.tab-button.active .tab-icon {
  background: #2563EB;
  color: white;
}

.tab-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.tab-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0F172A;
}

.tab-content p {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
  color: #64748b;
}

/* Tab Display */
.tab-display {
  position: relative;
}

.tab-visual {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-interface {
  background: white;
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 600px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.interface-header {
  background: #f8fafc;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  font-weight: 600;
  color: #0F172A;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
}

.action-button {
  width: 2rem;
  height: 2rem;
  background: #e2e8f0;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  cursor: pointer;
}

.interface-content {
  padding: 1.5rem;
  min-height: 300px;
  color: #475569;
}

/* Features Section */
.features-section {
  background: #f8fafc;
  padding: 4rem 0;
}

.features-section .section-header,
.services-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-section .section-header h2,
.services-section .section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #0F172A;
}

.features-section .section-header p,
.services-section .section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  color: #64748b;
}

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

.feature-card {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

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

.feature-icon {
  width: 5rem;
  height: 5rem;
  background: #2563EB;
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #0F172A;
}

.feature-card p {
  color: #64748b;
}

/* Services Section */
.services-section {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: scale(1.05);
  border-color: #2563EB;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-icon-wrap {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #2563EB, #1E40AF);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #fff;
}

.service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #0F172A;
}

.service-item p {
  color: #64748b;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
}

.cta-card {
  background: linear-gradient(135deg, #2563EB, #1E40AF);
  border-radius: var(--border-radius-xl);
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-card p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-actions .btn {
  background: white;
  color: #2563EB;
  text-decoration: none;
}

.cta-actions .btn:hover {
  background: #f1f5f9;
  text-decoration: none;
}

.cta-actions .btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid white;
  text-decoration: none;
}

.cta-actions .btn-ghost:hover {
  background: white;
  color: #2563EB;
  text-decoration: none;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 767px) {
  .muhasebe-hero {
    padding: 2rem 0 4rem;
  }

  .interactive-tabs {
    padding: 1rem;
  }

  .tabs-navigation {
    grid-template-columns: 1fr;
  }

  .tab-button {
    padding: 1rem;
  }

  .tab-visual {
    padding: 1rem;
    min-height: 300px;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }
}
