@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --text-dark: #0f172a;
  /* Slate 900 for excellent contrast */
  --text-muted: #475569;
  /* Slate 600 for readable muted text */
  --bg-light: #f8fafc;
  --card-bg: rgba(255, 255, 255, 0.95);
  --primary-blue: #667eea;
  --primary-hover: #764ba2;
  --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --nav-glass: rgba(255, 255, 255, 0.95);
  --border-color: rgba(255, 255, 255, 0.2);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --input-bg: #ffffff;
  --success: #198754;
  --error: #dc3545;
  --radius-lg: 24px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  line-height: 1.65;
  /* Increased for better readability */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 2rem 4rem 2rem;
  /* Navbar boşluğu */
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: linear-gradient(135deg,
      rgba(102, 126, 234, 0.1) 0%,
      rgba(118, 75, 162, 0.1) 25%,
      rgba(240, 147, 251, 0.1) 50%,
      rgba(245, 87, 108, 0.1) 75%,
      rgba(102, 126, 234, 0.1) 100%);
  background-attachment: fixed;
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Navbar (Orange Style) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 5%;
  background: rgba(13, 110, 253, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar .logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.navbar .logo-subtitle {
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links li>a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.nav-links li.header-dropdown>a {
  padding-right: 0.8rem;
}

.nav-links li>a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Telefon sat butonunu ezmemesi için özelleştirme listemizdeki .header-btn etiketini izole ediyoruz */
.nav-links li>a.header-btn {
  border: none;
}

/* Hamburger Menü Butonu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  position: relative;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  left: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.mobile-menu-btn.active .hamburger {
  background-color: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Sections */
section {
  width: 100%;
  max-width: 1100px;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-margin-top: 6rem;
}

.hero-section {
  margin-top: 0;
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.hero-section .subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  font-weight: 400;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  box-shadow: var(--card-shadow);
  animation: fadeInUp 0.8s ease-out;
}

.content-section {
  text-align: left;
  align-items: flex-start;
}

.content-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.content-section p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.content-section b,
.content-section strong {
  color: var(--text-dark);
}

/* Form Elements */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
  color: #1f2937;
  font-weight: 700;
}

select,
input,
textarea {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  color: #111827;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

select:hover,
input:hover,
textarea:hover {
  border-color: #d1d5db;
}

/* Add custom arrow to select */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 16px;
  padding-right: 3rem;
}

select:focus,
input:focus,
textarea:focus {
  border-color: #13c296;
  box-shadow: 0 0 0 4px rgba(250, 60, 2, 0.15);
  background: #f0fdfa;
  /* Açık yeşil transparan arkaplan odaklanıldığında */
}

select:disabled {
  background-color: #e9ecef;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Button */
.btn-submit {
  width: 100%;
  padding: 1.2rem;
  margin-top: 1rem;
  background: var(--accent-gradient);
  border: none;
  border-radius: 50px;
  /* Pill shape */
  color: white;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.btn-submit:active {
  transform: translateY(1px);
}

/* Loader */
.loader {
  display: none;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Results section */
.result-card {
  display: none;
  margin-top: 2rem;
  padding: 2.5rem;
  background: #f8fff9;
  border: 1px solid #a3cfbb;
  border-radius: var(--radius-lg);
  text-align: center;
  animation: fadeIn 0.5s ease-out;
}

.result-card.error {
  background: #fff8f8;
  border-color: #f5c2c7;
}

.price-offer {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--success);
  margin: 1rem 0;
  letter-spacing: -1px;
}

.message {
  font-size: 1.05rem;
  color: var(--text-dark);
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* FAQ Items */
.faq-item {
  margin-bottom: 1rem;
  width: 100%;
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.faq-item strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.faq-item p {
  margin-bottom: 0;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 900px) {
  body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(13, 110, 253, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    backdrop-filter: none;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    pointer-events: all;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 6rem;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .card {
    padding: 1.5rem !important;
    border-radius: 16px !important;
  }

  .price-offer {
    font-size: 2.2rem;
  }

  .content-section h2 {
    font-size: 1.6rem !important;
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.3;
  }

  .content-section h3 {
    font-size: 1.3rem !important;
    line-height: 1.4;
  }

  /* Global mobile typography adjustments */
  h1 {
    font-size: 2rem !important;
  }

  .page-header {
    padding: 2rem 1rem 1rem 1rem !important;
  }

  .page-header h1 {
    font-size: 2.2rem !important;
  }

  .page-header p {
    font-size: 1rem !important;
  }

  .footer-wrapper {
    margin-left: -0.8rem !important;
    margin-right: -0.8rem !important;
    margin-bottom: -4rem !important;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
    text-align: center;
  }

  .hero-premium-title {
    font-size: 2rem !important;
  }

  .hero-premium-title span {
    font-size: 1.2rem !important;
  }

  .stat-card h3 {
    font-size: 2rem !important;
  }

  /* Form inputs stacking fix */
  .form-row {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .input-group,
  select,
  input[type="text"],
  input[type="tel"] {
    font-size: 16px !important;
  }

  /* Prevents iOS zooming */

  img,
  iframe,
  video {
    max-width: 100% !important;
  }

  .btn-submit {
    font-size: 1.05rem;
    padding: 1rem;
  }

  .navbar .logo {
    font-size: 1.5rem;
  }

  .navbar .logo-subtitle {
    display: none;
    /* Mobilde çok yer kaplamaması için gizle */
  }

  .faq-item {
    padding: 1.2rem;
  }
}

/* Blog Grid Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.blog-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.blog-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.blog-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-info h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-weight: 700;
}

.blog-info .blog-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.8rem;
}

.blog-info .blog-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* SEO Tags Style */
.seo-tag {
  background: rgba(13, 110, 253, 0.05);
  color: #6c757d;
  font-size: 0.85rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(13, 110, 253, 0.1);
  margin: 0;
  transition: all 0.2s ease;
  cursor: default;
}

.seo-tag:hover {
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary-blue);
}

/* Screen reader only for SEO text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* New Premium Footer Styles */
.footer-wrapper {
  margin-top: 5rem;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  overflow: hidden;
  align-self: stretch;
  margin-left: -2rem;
  margin-right: -2rem;
  margin-bottom: -4rem;
}

.footer-cta {
  background: var(--accent-gradient);
  padding: 3rem 2rem;
  color: white;
}

.cta-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 1rem;
}

.cta-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.btn-price {
  background: white;
  color: var(--primary-blue);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-price:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
  display: flex;
  align-items: center;
}

.btn-whatsapp::before {
  content: '💬';
  margin-right: 6px;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.main-footer {
  background: #111827;
  color: #9ca3af;
  padding: 5rem 2rem 2rem 2rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.footer-col h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.footer-col ul li a::before {
  content: '✓';
  color: #10b981;
  margin-right: 8px;
  font-weight: bold;
}

.footer-col .social-links li a::before {
  content: none;
  display: none;
}

.footer-col .social-links li a {
  justify-content: center;
}

.footer-col ul li a:hover {
  color: white;
}

.contact-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-box h4 {
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.contact-box p {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.contact-box strong {
  color: white;
  font-weight: 600;
}

.contact-box a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-box a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.9rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 768px) {
  .cta-content {
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }
}

/* WhatsApp Premium Animated Widget */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.5);
}

.whatsapp-float::before {
  content: "Anında Fiyat Alın!";
  position: absolute;
  right: 80px;
  bottom: 0;
  background: white;
  color: #333;
  padding: 10px 18px;
  border-radius: 20px 20px 0 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(20px);
}

.whatsapp-float:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-float::before {
    display: none;
  }
}

/* Multi-Step Wizard Form Styles */
.wizard-form {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-align: left;
}

.wizard-steps-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.wizard-steps-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #eef2f6;
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 2px;
}

.wizard-step-indicator {
  width: 35px;
  height: 35px;
  background: #eef2f6;
  color: #94a3b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
  border: 4px solid #fff;
}

.wizard-step-indicator.active {
  background: var(--primary-blue);
  color: white;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

.wizard-step-indicator.completed {
  background: #10b981;
  color: white;
}

.wizard-panel {
  display: none;
  animation: fadeInRight 0.4s ease forwards;
}

.wizard-panel.active {
  display: block;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wizard-panel h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-align: center;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.wizard-btn-prev {
  background: #f1f5f9;
  color: #475569;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.wizard-btn-prev:hover {
  background: #e2e8f0;
}

.wizard-btn-next {
  background: var(--primary-blue);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  transition: all 0.2s;
}

.wizard-btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

/* Trust Counters */
.trust-counters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1000px;
  margin: 1rem auto 3rem auto;
  padding: 2.5rem 2rem;
  background: rgba(13, 110, 253, 0.04);
  border: 1px solid rgba(13, 110, 253, 0.1);
  border-radius: 20px;
  color: #1e293b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.counter-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.counter-num {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(to right, #60a5fa, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 1rem;
  color: #475569;
  font-weight: 600;
}

/* Header Dropdown & Navigation Fix for All Pages */
.header-dropdown {
  position: relative;
  display: inline-block;
}

.header-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 230px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-radius: 12px;
  top: 100%;
  left: -20px;
  padding: 0.5rem 0;
  border: 1px solid rgba(13, 110, 253, 0.1);
}

.header-dropdown-content::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.header-dropdown-content a {
  padding: 12px 20px !important;
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  color: #475569 !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
}

.header-dropdown-content a:hover {
  background-color: #f8fafc !important;
  color: var(--primary-blue) !important;
  transform: none !important;
}

.header-dropdown:hover .header-dropdown-content {
  display: block;
}

@media (max-width: 768px) {
  .header-dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
    background: #f8fafc;
    margin-top: 0;
    left: 0;
    min-width: 100%;
    padding: 0;
  }

  .header-dropdown-content a {
    padding: 12px 30px !important;
  }
}

/* Header Button Style override for global view */
.nav-links li>a.header-btn {
  background: #fa3c02 !important;
  color: #ffffff !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 12px rgba(250, 60, 2, 0.3) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-links li>a.header-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(250, 60, 2, 0.4) !important;
}

/* Footer Social Icons & Adjustments */
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links li {
  margin-bottom: 0 !important;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #cbd5e1 !important;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  transform: translateY(-3px);
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icon.tiktok:hover {
  background: #000000;
  border-color: #69C9D0;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
}

.social-icon.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.social-icon.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
}

.social-icon.twitter:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
}

.social-icon.linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
}

.contact-box p {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  display: flex;
}

.contact-box p strong {
  margin-bottom: 0;
  margin-right: 0.5rem;
  color: white;
}

.contact-box a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
}

.contact-box a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .form-grid-2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .trust-counters {
    gap: 1.5rem !important;
    padding: 1.5rem 1rem !important;
  }
  
  .counter-box {
    flex: 1 1 40% !important;
    min-width: 140px !important;
  }
  
  .counter-num {
    font-size: 2.2rem !important;
  }
  
  .hero-premium-title {
    font-size: 2.3rem !important;
  }
  
  .hero-premium-title span {
    font-size: 1.4rem !important;
  }
  
  .wizard-actions {
    flex-direction: column !important;
    gap: 1rem;
  }
  
  .wizard-actions button {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  
  .cta-content {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .cta-buttons {
    flex-direction: column !important;
    width: 100% !important;
  }
  
  .cta-buttons a {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .counter-box {
    flex: 1 1 100% !important;
  }
  
  .price-offer {
    font-size: 2.5rem !important;
  }
  
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
  
  iframe {
    height: 250px !important;
  }
  
  .wizard-panel {
    padding: 1.5rem !important;
  }
  
  .stat-card {
    padding: 1.5rem !important;
  }
}

/* ========================================= */
/* EXTRACTED INLINE STYLES FOR W3C COMPLIANCE */
/* ========================================= */

body { padding-top: 4rem; background: #f4f7fa; }
        .admin-container { max-width: 800px; margin: 0 auto; width: 100%; padding: 0 1rem; }
        .admin-card { background: #fff; padding: 2rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 2rem; }
        h1, h2 { color: #0d6efd; margin-bottom: 1rem; }
        .msg-error { background: #f8d7da; color: #842029; padding: 1rem; border-radius: 8px; margin-bottom: 1rem; }
        .msg-success { background: #d1e7dd; color: #0f5132; padding: 1rem; border-radius: 8px; margin-bottom: 1rem; }
        table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
        th, td { padding: 12px; text-align: left; border-bottom: 1px solid #dee2e6; }
        th { background: #f8f9fa; font-weight: 600; }
        .btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; border-radius: 8px; cursor: pointer; text-decoration: none; display: inline-block; }
        .btn-danger { background: #dc3545; color: #fff; border: none; }
        .btn-danger:hover { background: #bb2d3b; }
        .header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem;}
        textarea { width: 100%; padding: 1rem 1.2rem; background: #ffffff; border: 1px solid #dee2e6; border-radius: 12px; font-family: inherit; font-size: 1rem; resize: vertical; min-height: 120px; outline: none; transition: border-color .2s; margin-bottom: 1.5rem; }
        textarea:focus { border-color: #0d6efd; box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15); }
        
        /* Tabs */
        .admin-tabs { display: flex; gap: 1rem; margin-bottom: 2rem; border-bottom: 2px solid #e9ecef; padding-bottom: 1rem; }
        .tab-btn { padding: 0.8rem 1.5rem; background: transparent; border: 2px solid transparent; border-radius: 8px; cursor: pointer; font-weight: 600; color: #6c757d; font-size: 1rem; transition: all 0.2s; outline: none; }
        .tab-btn:hover { background: #e9ecef; }
        .tab-btn.active { background: #fff; color: #0d6efd; border-color: #0d6efd; box-shadow: 0 4px 15px rgba(13, 110, 253, 0.15); }
        .tab-content { display: none; }
        .tab-content.active { display: block; animation: fadeIn 0.3s ease-in-out; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.hero-premium-title {
                    font-size: 3.5rem;
                    font-weight: 900;
                    letter-spacing: -1.5px;
                    margin-bottom: 0.5rem;
                    display: inline-block;
                    background: linear-gradient(135deg, #fa3c02 0%, #ff8c00 100%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    filter: drop-shadow(0 4px 6px rgba(250, 60, 2, 0.2));
                }
                @media (max-width: 768px) {
                    .hero-premium-title {
                        font-size: 2.2rem;
                        letter-spacing: -1px;
                    }
                }

.populer-ipucu-kart div:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(13, 110, 253, 0.1) !important; border-color: var(--primary-blue) !important;}

.page-content { max-width: 900px; margin: 4rem auto; padding: 2rem; background: var(--card-bg); border-radius: var(--radius-lg); box-shadow: var(--card-shadow); border: 1px solid var(--border-color); }
        .page-content h1 { font-size: 2.2rem; margin-bottom: 2rem; color: var(--text-dark); border-bottom: 2px solid rgba(13, 110, 253, 0.1); padding-bottom: 1rem; }
        .page-content h2 { font-size: 1.5rem; margin-top: 1.5rem; margin-bottom: 1rem; color: var(--primary-blue); }
        .page-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }

.page-header {
            text-align: center;
            padding: 4rem 2rem 2rem 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .page-header h1 {
            font-size: 3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }
        .page-header p {
            color: var(--text-muted);
            font-size: 1.15rem;
            line-height: 1.6;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            text-align: center;
        }
        .stat-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            box-shadow: var(--card-shadow);
        }
        .stat-card h3 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        .stat-card p {
            color: var(--text-dark);
            font-weight: 600;
            margin: 0;
        }

        .reasons-list {
            margin-top: 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .reason-item {
            background: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--primary-blue);
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            transition: transform 0.2s;
        }
        .reason-item:hover {
            transform: translateY(-5px);
        }
        .reason-item h4 {
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
        }
        .reason-item h4 span {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .reason-item p {
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
            font-size: 0.95rem;
        }

@media (max-width: 768px) {
                .timeline-row { flex-direction: column !important; align-items: stretch !important; margin-bottom: 2rem !important; }
                .timeline-row > div { width: 100% !important; text-align: left !important; }
                .timeline-badge { position: absolute; left: -15px; top: -15px; width: 40px !important; height: 40px !important; font-size: 1rem !important; }
                .timeline-line { display: none !important; }
            }

.page-header {
            text-align: center;
            padding: 4rem 2rem 2rem 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .page-header h1 {
            font-size: 3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }
        .page-header p {
            color: var(--text-muted);
            font-size: 1.15rem;
            line-height: 1.6;
        }

        .service-block {
            background: #fff;
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            margin-bottom: 3rem;
            box-shadow: var(--card-shadow);
        }
        .service-block h2 {
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        .service-block h2 span {
            font-size: 2.5rem;
            margin-right: 15px;
        }
        .service-block p {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .model-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .model-list li {
            background: var(--bg-light);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            color: var(--primary-blue);
            border: 1px solid rgba(13, 110, 253, 0.1);
            text-align: center;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        .feature-item {
            text-align: center;
            padding: 2rem;
            background: var(--bg-light);
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        .feature-item:hover {
            transform: translateY(-5px);
            background: #fff;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }
        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }
        .feature-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

.header-dropdown { position: relative; display: inline-block; }
                .header-dropdown-content { display: none; position: absolute; background-color: #fff; min-width: 230px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); z-index: 999; border-radius: 12px; top: 100%; left: -20px; padding: 0.5rem 0; border: 1px solid rgba(13, 110, 253, 0.1); }
                /* Buton ile liste arasında boşluk olduğunda hover'ın kopmaması için görünmez bir köprü ekliyoruz */
                .header-dropdown-content::before { content: ""; position: absolute; top: -15px; left: 0; width: 100%; height: 15px; }
                .header-dropdown-content a { padding: 12px 20px !important; display: flex !important; align-items: center; gap: 0.6rem; color: #475569 !important; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: background 0.2s, color 0.2s; border-radius: 0 !important; background: transparent !important; border: none !important;}
                .header-dropdown-content a:hover { background-color: #f8fafc !important; color: var(--primary-blue) !important; transform: none !important;}
                .header-dropdown:hover .header-dropdown-content { display: block; }
                
                @media (max-width: 768px) {
                    .header-dropdown-content { position: static; box-shadow: none; border: none; display: none; background: #f8fafc; margin-top: 0; left: 0; min-width: 100%; padding: 0; }
                    .header-dropdown-content a { padding: 12px 30px !important; }
                }
                .seo-marquee-container {
                    width: 100%;
                    max-width: 900px;
                    margin: 1.5rem auto 2rem auto;
                    overflow: hidden;
                    position: relative;
                    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
                    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
                    white-space: nowrap;
                }
                .seo-marquee-content {
                    display: inline-block;
                    animation: marqueeScroll 150s linear infinite;
                }
                .seo-marquee-content:hover {
                    animation-play-state: paused;
                }
                @keyframes marqueeScroll {
                    0% { transform: translateX(0); }
                    100% { transform: translateX(-50%); }
                }
                .seo-badge {
                    display: inline-block;
                    padding: 0.4rem 1rem;
                    margin: 0 0.4rem;
                    background: rgba(13, 110, 253, 0.05);
                    border: 1px solid rgba(13, 110, 253, 0.15);
                    border-radius: 50px;
                    color: var(--text-muted);
                    font-size: 0.85rem;
                    font-weight: 500;
                    transition: all 0.3s ease;
                }
                .seo-badge:hover {
                    background: rgba(13, 110, 253, 0.1);
                    color: var(--primary-blue);
                    border-color: rgba(13, 110, 253, 0.3);
                }
                .hero-premium-title {
                    font-size: 3.5rem;
                    font-weight: 900;
                    letter-spacing: -1.5px;
                    margin-bottom: 0.5rem;
                    display: inline-block;
                    background: linear-gradient(135deg, #fa3c02 0%, #ff8c00 100%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    filter: drop-shadow(0 4px 6px rgba(250, 60, 2, 0.2));
                }
                .hero-premium-subtitle {
                    font-size: 1.3rem; 
                    margin: 0; 
                    display: inline-block; 
                    background: linear-gradient(135deg, #f0fdfa 0%, #13c296 150%); 
                    border: 1px solid rgba(250, 60, 2, 0.3); 
                    padding: 0.8rem 2rem; 
                    border-radius: 50px; 
                    font-weight: 800; 
                    color: #0d8263; 
                    letter-spacing: -0.5px; 
                    box-shadow: 0 8px 20px rgba(250, 60, 2, 0.15);
                }
                @media (max-width: 768px) {
                    .hero-premium-title {
                        font-size: 2.2rem;
                        letter-spacing: -1px;
                    }
                    .hero-premium-subtitle {
                        font-size: 1rem;
                        padding: 0.6rem 1rem;
                        white-space: normal;
                        line-height: 1.4;
                    }
                }

.why-grid {
                display: grid; 
                grid-template-columns: repeat(3, 1fr); 
                gap: 1.5rem; 
                margin-bottom: 2.5rem;
            }
            @media (max-width: 900px) {
                .why-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
            @media (max-width: 600px) {
                .why-grid {
                    grid-template-columns: 1fr;
                }
            }

.reviews-slider::-webkit-scrollbar { height: 8px; }
            .reviews-slider::-webkit-scrollbar-track { background: rgba(0,0,0,0.02); border-radius: 10px; }
            .reviews-slider::-webkit-scrollbar-thumb { background: rgba(13, 110, 253, 0.3); border-radius: 10px; }
            .reviews-slider::-webkit-scrollbar-thumb:hover { background: rgba(13, 110, 253, 0.5); }

.seo-marquee-wrapper {
            overflow: hidden;
            width: 100%;
            background: linear-gradient(90deg, #f8fafc 0%, #fff 50%, #f8fafc 100%);
            padding: 2.5rem 0;
            border-top: 1px solid rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: relative;
        }
        .seo-marquee-wrapper h2 {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .seo-marquee {
            display: flex;
            width: fit-content;
            animation: scrollMarquee 45s linear infinite;
        }
        .seo-marquee:hover {
            animation-play-state: paused;
        }
        .seo-tag-slide {
            display: inline-flex;
            align-items: center;
            background: #fff;
            padding: 0.6rem 1.2rem;
            margin: 0 0.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            color: #475569;
            font-weight: 500;
            white-space: nowrap;
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
            cursor: default;
        }
        .seo-tag-slide:hover {
            border-color: #3b82f6;
            color: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(59, 130, 246, 0.1);
        }
        .seo-marquee-wrapper::before,
        .seo-marquee-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 2;
            pointer-events: none;
        }
        .seo-marquee-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #f8fafc, transparent);
        }
        .seo-marquee-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #f8fafc, transparent);
        }
        
        @keyframes scrollMarquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

.faq-page-header {
            text-align: center;
            padding: 4rem 2rem 2rem 2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-page-header h1 {
            font-size: 3rem;
            font-weight: 900;
            letter-spacing: -1.5px;
            margin-bottom: 0.5rem;
            display: inline-block;
            background: linear-gradient(135deg, #fa3c02 0%, #ff8c00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 4px 6px rgba(250, 60, 2, 0.2));
            margin-bottom: 1rem;
        }
        .faq-page-header p {
            color: var(--text-muted);
            font-size: 1.15rem;
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto;
        }
        .faq-category-title {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(13, 110, 253, 0.1);
        }
        
        /* Accordion Styles */
        .accordion-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }
        .accordion-item:hover {
            box-shadow: 0 6px 12px rgba(0,0,0,0.05);
            border-color: #cdd4dc;
        }
        .accordion-btn {
            width: 100%;
            text-align: left;
            padding: 1.25rem 1.5rem;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            font-family: inherit;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.2s;
        }
        .accordion-btn:hover {
            color: var(--primary-blue);
        }
        .accordion-btn::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-blue);
            transition: transform 0.3s ease;
        }
        .accordion-item.active .accordion-btn::after {
            content: '−';
            transform: rotate(180deg);
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease;
            background: #f8fbff;
        }
        .accordion-item.active .accordion-content {
            max-height: 500px; /* Yaklaşık bir maksimum değer */
            padding: 0 1.5rem 1.5rem 1.5rem;
        }
        .accordion-content p {
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }
        
        .seo-invisible-h2 {
            position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
        }

/* BRAND SELECTOR UI */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    grid-column: 1 / -1; /* spans full width if inside form-grid-2 */
}
.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 0.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
    text-align: center;
    user-select: none;
}
.brand-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}
.brand-card input[type="radio"] {
    display: none;
}
.brand-card.active {
    border-color: var(--primary-blue, #0d6efd);
    background: #f0f7ff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}
.brand-card.active span {
    color: var(--primary-blue, #0d6efd);
}
.brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 2px;
}
.brand-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark, #333);
}
/* For mobile screens make them smaller */
@media (max-width: 480px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
