* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background-color: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  opacity: 0.95;
}

/* Calculator Section */
.calculator-section {
  padding: 4rem 0;
}

.calculator-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  max-width: 600px;
  margin: 0 auto;
}

.calculator-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1e293b;
  text-align: center;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #334155;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #1e40af;
}

/* Result Card */
.result-card {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f1f5f9;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.result-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.result-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
}

.result-item.total {
  background: #2563eb;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem;
}

.result-label {
  font-weight: 600;
}

.result-value {
  font-weight: 700;
  color: #2563eb;
}

.result-item.total .result-value {
  color: white;
}

/* Features Section */
.features-section {
  padding: 4rem 0;
  background: white;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #1e293b;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.contact-form-card,
.contact-info-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.form-title,
.info-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1e293b;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-result {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #dcfce7;
  border: 2px solid #22c55e;
  border-radius: 8px;
  color: #166534;
  font-weight: 600;
  text-align: center;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.info-item p {
  color: #64748b;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
}

/* Yeni bilgi bölümleri için stiller eklendi */

/* Info Section */
.info-section {
  padding: 4rem 0;
  background: white;
}

.info-content {
  max-width: 900px;
  margin: 0 auto;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  text-align: justify;
}

.info-text strong {
  color: #2563eb;
  font-weight: 700;
}

/* Conditions Section */
.conditions-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.section-intro {
  text-align: center;
  font-size: 1.15rem;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.condition-card {
  background: white;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 4px solid #2563eb;
}

.condition-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.condition-number {
  background: #2563eb;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.condition-card p {
  color: #475569;
  line-height: 1.7;
  font-size: 1rem;
}

.info-box {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #2563eb;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.info-box h3 {
  color: #1e40af;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-box h3::before {
  content: "⚠️";
  font-size: 1.75rem;
}

.info-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-box li {
  padding-left: 1.75rem;
  position: relative;
  color: #1e40af;
  line-height: 1.7;
  font-size: 1rem;
}

.info-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Calculation Info Section */
.calculation-info-section {
  padding: 4rem 0;
  background: white;
}

.calculation-content {
  max-width: 1000px;
  margin: 0 auto;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 2.5rem 0 2rem;
  text-align: center;
}

.factors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.factor-item {
  background: #f8fafc;
  padding: 1.75rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.factor-item:hover {
  transform: translateY(-4px);
  border-color: #2563eb;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.15);
}

.factor-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.factor-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.factor-item p {
  color: #64748b;
  font-size: 0.95rem;
}

.cta-box {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.cta-box h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-box .btn-primary {
  background: white;
  color: #2563eb;
  display: inline-block;
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-box .btn-primary:hover {
  background: #f8fafc;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .calculator-card {
    padding: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 1rem;
  }

  /* Mobil için yeni bölüm responsive stilleri */
  .info-text p {
    font-size: 1rem;
  }

  .conditions-grid {
    grid-template-columns: 1fr;
  }

  .info-box {
    padding: 1.5rem;
  }

  .factors-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 2rem 1.5rem;
  }

  .cta-box h3 {
    font-size: 1.5rem;
  }
  /* Sigorta acenteliği sayfası responsive stilleri eklendi */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
  /* WhatsApp butonu mobil responsive */
  .whatsapp-button {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-button svg {
    width: 28px;
    height: 28px;
  }
}

/* Sigorta acenteliği sayfası için yeni stiller eklendi */

/* Insurance Agency Page Styles */
.agency-hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 3rem 0;
}

.insurance-products-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.15);
}

.product-image {
  position: relative;
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.product-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-badge {
  position: absolute;
  top: -20px;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.product-description {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.product-link:hover {
  gap: 0.75rem;
}

/* Why Agency Section */
.why-agency-section {
  padding: 4rem 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.benefit-item:hover {
  transform: translateY(-4px);
  border-color: #2563eb;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.benefit-item p {
  color: #64748b;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.15rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.15rem;
  display: inline-block;
  text-decoration: none;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
  width: 32px;
  height: 32px;
  color: white;
}

/* Centered Contact Form */
.contact-form-card.centered {
  max-width: 700px;
  margin: 0 auto;
}
