/* ===============================================
   MODERN KUTU HARF WEBSITE - CUSTOM CSS
   Primary Color: #7dba00
   Secondary Color: #383e42
   =============================================== */

:root {
  --primary-color: #7dba00;
  --primary-hover: #6ba300;
  --primary-dark: #5a8c00;
  --secondary-color: #383e42;
  --secondary-hover: #2a2e31;
  --dark-bg: #1a1d1f;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --border-color: #dee2e6;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dynamic-page-content img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

.dynamic-page-content * {
  font-family: var(--font-main) !important;
}
/* ===============================================
   COOKIE CONSENT
   =============================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--primary-color);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-consent-title i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.cookie-consent-message {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.cookie-consent-message a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.cookie-consent-message a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.cookie-consent-actions {
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  white-space: nowrap;
  background: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.cookie-btn:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 1rem 0;
  }

  .cookie-consent-content {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .cookie-consent-text {
    min-width: 100%;
  }

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }

  .cookie-consent-title {
    font-size: 1rem;
  }

  .cookie-consent-message {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .cookie-consent-title i {
    display: none;
  }
}
/* ===============================================
   WHATSAPP FLOATING BUTTON
   =============================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  text-decoration: none;
  right: 30px;
  z-index: 9999;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  font-size: 32px;
  color: var(--white);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  }
}

/* ===============================================
   TOP BAR
   =============================================== */

.top-bar {
  background-color: var(--secondary-color);
  padding: 0px;
  font-size: 14px;
  border-bottom: 2px solid var(--primary-color);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-link {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-weight: 500;
}

.contact-link:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}

.contact-link i {
  font-size: 16px;
}

/* ===============================================
   MAIN NAVIGATION
   =============================================== */

.main-nav {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  padding: 0;
  z-index: 1000;
  position: relative;
}

.main-nav .container {
  position: relative;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo img {
  height: 50px;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.toggle-bar {
  width: 28px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-toggle:hover .toggle-bar {
  background-color: var(--primary-color);
}

.navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
  flex: 1;
  margin-left: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block;
  padding: 10px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

/* Primary & Success Buttons */
.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--secondary-hover) 100%
  );
  color: var(--white) !important;
  font-weight: 600;
  padding: 12px 24px !important;
  box-shadow: var(--shadow-sm);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(
    135deg,
    var(--secondary-hover) 0%,
    var(--dark-bg) 100%
  );
}

.btn-success-custom {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white) !important;
  font-weight: 600;
  padding: 12px 24px !important;
  box-shadow: var(--shadow-sm);
}

.btn-success-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--primary-hover) 0%, #4a7700 100%);
}

.btn-primary-custom i,
.btn-success-custom i {
  margin-right: 6px;
}

/* Auth Menu */
.auth-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  margin-left: 20px;
}

/* ===============================================
   DROPDOWN MENUS
   =============================================== */

.dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}

.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  margin-top: 8px;
  /* Animasyonu kaldırıyoruz, Bootstrap'ın kendi animasyonunu kullanıyoruz */
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}

.dropdown-menu.show {
  animation: none;
}

.dropdown-item {
  padding: 10px 16px;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 14px;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

.dropdown-item i {
  margin-right: 8px;
  width: 16px;
}
/* ===============================================
   MAIN CONTENT
   =============================================== */

main {
  min-height: calc(100vh - 500px);
}

/* ===============================================
   FOOTER
   =============================================== */

.footer {
  margin-top: 80px;
}

.footer-main {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--dark-bg) 100%
  );
  color: var(--white);
  padding: 60px 0 40px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact i {
  width: 20px;
  color: var(--primary-color);
  font-size: 18px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

.footer-contact a:hover {
  color: var(--primary-color);
}

/* Social Links */
.social-links {
  margin-top: 30px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 18px;
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(125, 186, 0, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  background-color: var(--primary-color);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--white);
  font-size: 13px;
  line-height: 1.8;
  font-weight: 500;
}

/* ===============================================
   MEGA MENU - UPDATED WITH SCROLL FIX
   =============================================== */

.mega-menu {
  position: static !important;
}

.mega-dropdown {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin-top: 0 !important;
  padding: 25px !important;
  border-radius: 16px !important;
  top: 100% !important;
  max-height: 85vh !important;
  overflow-y: auto !important;
  /* Bootstrap'ın inline style'larını override etmek için */
  inset: auto !important;
}

/* Animasyon kapatma */
.mega-dropdown,
.mega-menu .dropdown-menu {
  animation: none !important;
  transition: opacity 0.2s ease !important;
}

.mega-dropdown-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  max-height: none;
}

.mega-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.mega-title {
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-color);
  flex-shrink: 0;
}

.social-icons a {
  text-decoration: none !important;
}
.mega-link {
  display: block;
  padding: 6px 12px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  border-radius: 6px;
  transition: var(--transition);
  margin-bottom: 3px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mega-link:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
  transform: translateX(5px);
  padding-left: 12px;
}

/* Scrollbar Styling for Mega Menu */
.mega-dropdown::-webkit-scrollbar {
  width: 10px;
}

.mega-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
  margin: 10px 0;
}

.mega-dropdown::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

.mega-dropdown::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 1200px) {
  .mega-dropdown-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .mega-dropdown {
    max-height: 80vh !important;
  }
  /* Buraya mobil menu stillerini de ekle */
  .mobile-toggle {
    display: flex;
  }

  .locale-selector .dropdown-menu {
    right: 0 !important;
    left: auto !important;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 16px 16px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Desktop - Default visible state */
@media (min-width: 1201px) {  /* 993px yerine 1201px */
  .navbar-collapse {
    display: flex !important;
  }

  .mobile-toggle {
    display: none !important;
  }
}

/* Mobile - Collapsible menu */
@media (max-width: 1200px) {  /* 992px yerine 1200px */
  .mobile-toggle {
    display: flex;
  }

  .locale-selector .dropdown-menu {
    right: 0 !important;
    left: auto !important;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 16px 16px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-collapse:not(.show) {
    display: none;
  }

  .navbar-collapse.show {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    display: block;
  }

  /* Mobilde tüm dropdown'ları düzelt */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin: 10px 0 !important;
    border: 1px solid var(--border-color) !important;
    inset: auto !important;
  }

  .auth-menu {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
  }

  .mega-dropdown {
    position: static !important;
    transform: none !important;
    left: auto !important;
    max-width: 100% !important;
    padding: 13px !important;
    margin: 0 !important;
    width: 100% !important;
    max-height: 70vh !important;
  }

  .mega-menu {
    position: relative !important;
  }

  .mega-dropdown-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-info {
    flex-direction: row;
    gap: 13px;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float i {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 3px 0;
  }
  .font-lato {
    display: none !important;
  }
  .widget-visible iframe {
    display: none !important;
  }
  .widget-visible,
  .widget-visible iframe {
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .footer-main {
    padding: 40px 0 30px;
  }

  .mega-title {
    font-size: 13px;
  }

  .mega-link {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .btn-primary-custom,
  .btn-success-custom {
    padding: 10px 16px !important;
    font-size: 14px;
  }

  .logo img {
    height: 40px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .contact-link {
    font-size: 13px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float i {
    font-size: 24px;
  }
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */

.text-primary-custom {
  color: var(--primary-color) !important;
}

.text-secondary-custom {
  color: var(--secondary-color) !important;
}

.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
  background-color: var(--secondary-color) !important;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Loading Animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading {
  animation: spin 1s linear infinite;
}

.ground-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ground-select-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Custom Ground Upload */
.custom-ground-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  display: inline-block;
  margin: 0;
}

.ground-select-wrapper .choices {
  flex: 1 !important;
}

/* Normal Banner (Secondary image yoksa) */
.banner-image-normal {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  /* 450x600 oranı */
  overflow: hidden;
  flex-shrink: 0;
}

.banner-single-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.banner-comparison-card:hover .banner-single-image {
  transform: scale(1.05);
}

/* Responsive için */
@media (max-width: 1024px) {
  .banner-image-normal {
  }
}

@media (max-width: 768px) {
  .banner-image-normal {
  }
}

@media (max-width: 480px) {
  .banner-image-normal {
  }
}

.btn-upload-ground,
.btn-clear-grounds {
  flex: 1;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-upload-ground:hover {
  background: var(--primary-color);
  color: white;
}

.btn-clear-grounds {
  border-color: #dc3545;
  color: #dc3545;
}

.btn-clear-grounds:hover {
  background: #dc3545;
  color: white;
}

#groundFileInput {
  display: none;
}

/* Feature Group Container */
.feature-group-container {
  background: #f8f9fa;
  border: 2px solid #e1e4e8;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
}

.feature-group-container:last-child {
  margin-bottom: 0;
}

.feature-group-header {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e4e8;
}

.feature-group-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Banner Title Link Styling */
.banner-title-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.banner-title-link:hover {
  text-decoration: none;
  color: var(--primary-color);
  transform: translateX(5px);
}

.banner-title-link:hover h4 {
  color: var(--primary-color);
}

/* Title area'ya hover efekti */
.banner-title:has(.banner-title-link):hover {
  background: #f8f9fa;
}

.feature-group-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-group-list .feature-item {
  margin-bottom: 0;
  background: white;
}

/* Text Preview */
.preview-card {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-image 0.5s ease;
}

.preview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.17);
  z-index: 1;
}

.preview-text {
  position: relative;
  z-index: 2;
  font-size: 5rem;
  font-weight: 800;
  color: #ffffff;
  word-break: break-word;
  line-height: 1;
  transition: font-size 0.3s ease;
  /* zoom için */
  cursor: move;
  user-select: none;
  display: inline-block;
  touch-action: none;
  /* BUNU EKLE - touch olayları için */
}

.preview-text.empty {
  font-size: 2rem;
  opacity: 0.5;
  font-weight: 400;
  cursor: default;
}

.preview-text.dragging {
  cursor: grabbing;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.stat-card {
  background: white;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  padding: 6px 8px;
  text-align: center;
}

.stat-label {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
  font-weight: 600;
}

.stat-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary-color);
}

/* Price Result */
.price-card {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 30px rgba(125, 186, 0, 0.3);
  display: none;
  animation: slideUp 0.4s ease;
}

.price-card.show {
  display: block;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
  margin-bottom: 10px;
  display: none !important;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1;
}

.btn-order {
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 18px 50px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Descriptions Section */
.descriptions-section {
  background: #f8f9fa;
  border: 2px solid #e1e4e8;
  border-radius: 16px;
  padding: 6px 10px;
  display: none;
}

.descriptions-section.show {
  display: block;
}

.description-item {
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e1e4e8;
}

.description-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.description-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#orderModal .btn-submit {
  font-size: 25px !important;
  margin-top: 15px;
}

.description-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Order Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  /* BUNU DEĞİŞTİR */
  z-index: 1040;
  /* SweetAlert2'nin z-index'i 1060, bizimkini düşürelim */
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-header {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--dark-bg) 100%
  );
  color: white;
  padding: 35px 40px;
  border-radius: 20px 20px 0 0;
  position: relative;
}

#orderModal .modal-header {
  padding: 20px !important;
}

.modal-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
}

#orderModal .modal-header h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
}

.btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
}

.btn-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.modal-body {
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

textarea.form-control {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border: none;
  border-radius: 12px;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(125, 186, 0, 0.4);
}

/* Bottom Banners Grid Section - YENİ VERSİYON (Swiper İptal) */
.bottom-banners-section {
  background: #f8f9fa;
  padding: 0;
  overflow: hidden;
}

.bottom-banners-container {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0px;

  padding-bottom: 8px;
}

/* Grid Yapısı */
.banners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin-top: 20px;
}

/* Banner Card - SABİT BOYUT */
.banner-comparison-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  /* ASPECT RATIO EKLE */
}

/* Image Comparison Container - SABİT BOYUT */
.banner-image-comparison {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  /* 450x600 oranı */
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  flex-shrink: 0;
}

/* Images */
.banner-image-secondary,
.banner-image-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.banner-image-secondary {
  z-index: 1;
}

.banner-image-primary {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}

/* Slider Handle - GÖZE ÇARPAN VERSİYON */
.comparison-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--secondary-color);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  transition: box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

/* Slider Handle - Merkez Tutucu */
.comparison-slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  border-radius: 50%;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.comparison-slider:hover::before {
  width: 42px;
  height: 42px;
}

/* Ok İkonları */
.comparison-slider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 7l-5 5 5 5M16 7l5 5-5 5'/%3E%3Cline x1='3' y1='12' x2='21' y2='12' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Üst ve Alt Ok İndikatörleri */
.comparison-slider-indicator {
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  transform: translateX(-50%);
  z-index: 4;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.comparison-slider-indicator.top {
  top: -15px;
  border-bottom: 20px solid var(--primary-color);
}

.comparison-slider-indicator.bottom {
  bottom: -15px;
  border-top: 20px solid var(--primary-color);
}

/* Labels - Daha Belirgin */
.comparison-label {
  position: absolute;
  top: 20px;
  padding: 10px 18px;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
  color: white;
  font-size: 13px;
  font-weight: 800;
  border-radius: 10px;
  z-index: 4;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.comparison-label.before {
  left: 20px;
  background: linear-gradient(
    135deg,
    rgba(220, 53, 69, 0.9) 0%,
    rgba(200, 35, 51, 0.95) 100%
  );
}

.comparison-label.after {
  right: 20px;
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.9) 0%,
    rgba(33, 136, 56, 0.95) 100%
  );
}

/* Banner Title */
.banner-title {
  text-align: center;
  background: white;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-title a {
  padding: 12px;
  width: 100%;
}

.banner-title h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--secondary-color);
  margin: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1400px) {
  .banners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 1024px) {
  .banners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .banner-image-comparison {
  }
}

@media (max-width: 768px) {
  .banners-grid {
    /**
     grid-template-columns: 1fr;

     */
    gap: 20px;
  }

  .banner-comparison-card {
    height: auto;
  }

  .banner-image-comparison {
  }

  .comparison-slider::before {
    width: 40px;
    height: 40px;
  }

  .comparison-slider::after {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .banner-comparison-card {
    height: auto;
  }

  .banner-image-comparison {
  }

  .banner-title h4 {
    font-size: 15px;
  }

  .comparison-slider::before {
    width: 50px;
    height: 50px;
  }
}
