/* Aktüerya Raporu Sayfası Özel Stilleri */

/* Hero Section */
.aktuarya-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.aktuarya-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.aktuarya-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.aktuarya-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 2rem;
  background: rgba(59, 130, 246, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.aktuarya-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.aktuarya-hero-description {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.aktuarya-hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-feature i {
  color: #3b82f6;
  width: 1.5rem;
  height: 1.5rem;
}

.hero-feature span {
  font-weight: 600;
  color: #1e293b;
}

.aktuarya-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Services Section */
.aktuarya-services {
  padding: 5rem 0;
  background-color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.02), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: #3b82f6;
  color: #ffffff;
  transform: scale(1.1);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #3b82f6;
}

.service-description {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.service-features i {
  color: #22c55e;
  width: 1rem;
  height: 1rem;
}

/* Expertise Section */
.aktuarya-expertise {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.expertise-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.expertise-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.expertise-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.expertise-description {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.expertise-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.expertise-stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.expertise-credentials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.credential:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateX(4px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.credential i {
  color: #3b82f6;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.25rem;
}

.credential-text h4 {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.credential-text p {
  color: #64748b;
  font-size: 0.875rem;
}

.expertise-visual {
  display: flex;
  justify-content: center;
}

.expertise-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  max-width: 400px;
  width: 100%;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.card-header i {
  color: #3b82f6;
}

.card-header h3 {
  font-weight: 600;
  color: #1e293b;
}

.report-preview {
  space-y: 0.75rem;
}

.report-line {
  height: 0.5rem;
  background: #e2e8f0;
  border-radius: 0.25rem;
  margin-bottom: 0.75rem;
}

.report-line.short {
  width: 60%;
}

.report-line.medium {
  width: 80%;
}

.report-signature {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.signature-line {
  width: 150px;
  height: 2px;
  background: #3b82f6;
  margin: 0 auto 0.5rem;
}

.report-signature p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0.25rem 0;
}

/* Process Section */
.aktuarya-process {
  padding: 5rem 0;
  background-color: #ffffff;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.step-description {
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.step-features {
  list-style: none;
}

.step-features li {
  color: #64748b;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.step-features li::before {
  content: "•";
  color: #3b82f6;
  position: absolute;
  left: 0;
}

/* Pricing Section */
.aktuarya-pricing {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #3b82f6;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3b82f6;
}

.price-note {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-feature i {
  color: #22c55e;
  width: 1rem;
  height: 1rem;
}

.pricing-note {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.pricing-note p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #64748b;
  margin: 0;
}

.pricing-note i {
  color: #3b82f6;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
}

/* Contact Section */
.aktuarya-contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #1e40af 50%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.aktuarya-contact::before {
  content: "";
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 20rem;
  height: 20rem;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(3rem);
  animation: pulse 2s infinite;
}

.contact-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-description {
  font-size: 1.125rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  color: #93c5fd;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.25rem;
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-details p {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-details span {
  font-size: 0.875rem;
  color: #cbd5e1;
}

.contact-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  flex: 1;
  min-width: 120px;
  max-width: 150px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  justify-content: center;
}

/* FAQ Section */
.aktuarya-faq {
  padding: 5rem 0;
  background-color: #ffffff;
}

/* Responsive Design */
@media (min-width: 640px) {
  .aktuarya-hero-features {
    grid-template-columns: repeat(4, 1fr);
  }

  .aktuarya-hero-actions {
    flex-direction: row;
  }

  .contact-actions {
    flex-direction: row;
  }

  .contact-info {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .contact-actions {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-content {
    grid-template-columns: 1fr 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .aktuarya-hero-title {
    font-size: 4rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Print Styles */
@media print {
  .aktuarya-hero,
  .aktuarya-contact,
  .contact-actions {
    display: none !important;
  }

  .service-card,
  .pricing-card {
    break-inside: avoid;
    margin-bottom: 1rem;
    box-shadow: none;
    border: 1px solid #e5e7eb;
  }
}

/* Mobil için daha minimal tasarım */
@media (max-width: 768px) {
  /* Hero Section - Mobil */
  .aktuarya-hero {
    padding: 3rem 0 2rem;
  }

  .aktuarya-hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .aktuarya-hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .aktuarya-hero-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero-feature {
    padding: 0.75rem;
    font-size: 0.875rem;
  }

  .hero-feature i {
    width: 1.25rem;
    height: 1.25rem;
  }

  .aktuarya-hero-actions {
    gap: 0.75rem;
  }

  .btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  /* Services Section - Mobil */
  .aktuarya-services {
    padding: 3rem 0;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

  .service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .service-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .service-features li {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  /* Expertise Section - Mobil */
  .aktuarya-expertise {
    padding: 3rem 0;
  }

  .expertise-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .expertise-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .expertise-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .credential {
    padding: 1rem;
    gap: 0.75rem;
  }

  .credential-text h4 {
    font-size: 0.875rem;
  }

  .credential-text p {
    font-size: 0.75rem;
  }

  /* Process Section - Mobil */
  .aktuarya-process {
    padding: 3rem 0;
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
    margin: 0 auto;
  }

  .step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .step-description {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  .step-features {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
  }

  .step-features li {
    font-size: 0.875rem;
  }

  /* Pricing Section - Mobil */
  .aktuarya-pricing {
    padding: 3rem 0;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-title {
    font-size: 1.25rem;
  }

  .pricing-feature {
    font-size: 0.875rem;
  }

  /* Contact Section - Mobil */
  .aktuarya-contact {
    padding: 3rem 0;
  }

  .contact-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .contact-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-details h4 {
    font-size: 0.875rem;
  }

  .contact-details p {
    font-size: 1rem;
  }

  .contact-details span {
    font-size: 0.75rem;
  }

  .contact-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-btn {
    width: 100%;
    max-width: none;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  /* FAQ Section - Mobil */
  .aktuarya-faq {
    padding: 3rem 0;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.875rem;
  }

  /* Section Headers - Mobil */
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* Container padding - Mobil */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Genel spacing ayarları */
  .services-grid,
  .pricing-cards {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .process-steps {
    gap: 2rem;
    margin-top: 2rem;
  }

  .expertise-credentials {
    gap: 1rem;
  }
}

/* Çok küçük ekranlar için (320px-480px) */
@media (max-width: 480px) {
  .aktuarya-hero-title {
    font-size: 1.75rem;
  }

  .aktuarya-hero-features {
    grid-template-columns: 1fr;
  }

  .hero-feature {
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  .service-card,
  .pricing-card {
    padding: 1.25rem;
  }

  .expertise-stats {
    gap: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}
