:root {
  --highlight-color: #6576ff;
  --dark-bg-color: #12171c;
  --secondary-color: #b96bd3;
  --bs-primary: #6576ff;
  --bs-primary-rgb: 101, 118, 255;
  --bs-secondary: #b96bd3;
  --bs-secondary-rgb: 185, 107, 211;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--dark-bg-color);
  color: #fff;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #556ae940, rgba(185, 107, 211, 0));
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header Styles */
header {
    align-items: center;
    padding: 20px 0;
    width: 100%;
    display: block;
}

.logo {
  height: 40px;
}

.logo img {
  height: 100%;
  padding: 0 20px;
}

/* Button Component Styles */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

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

.btn-primary {
  background-color: var(--highlight-color);
  border-color: var(--highlight-color);
  position: relative;
  overflow: hidden;
  border: 1px solid #b6beff;
  animation: pulse 1s infinite;
}

/* pulse animation */
.btn-primary:hover {
  animation: pulse 1s infinite;
}

.btn-primary:hover {
  background-color: #556ae9;
  border-color: #556ae9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(101, 118, 255, 0.3);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  position: relative;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

/* Shine Effect for all buttons */
.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 70%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: transform 0.8s;
}

.btn:hover::after {
  left: 200%;
  transition: left 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-icon {
  margin-left: 8px;
}

/* Override existing button styles */
.cta-button {
  min-height: 52px;
  padding: 0 28px;
  background-color: var(--highlight-color);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 70%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: transform 0.8s;
}

.cta-button:hover::after {
  left: 200%;
  transition: left 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-button:hover {
  background-color: #556ae9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(101, 118, 255, 0.3);
}

.secondary-button {
  min-height: 52px;
  padding: 0 28px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.secondary-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 70%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: transform 0.8s;
}

.secondary-button:hover::after {
  left: 200%;
  transition: left 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Media queries for mobile */
@media (max-width: 768px) {
  .btn, .cta-button, .secondary-button {
    min-height: 56px;
    width: 100%;
    justify-content: center;
  }
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  padding: 50px 0;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: transparent;
  background: linear-gradient(to bottom, white, #ffffffba);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: .875rem;
  line-height: 1.25rem;
  margin-bottom: 30px;
  max-width: 600px;
  color: #efedfdb3;
  
}

.buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.down-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-secondary:hover .down-arrow {
  transform: rotate(45deg) translateY(2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
    line-height: 2.8rem;
}
  
  .hero p {
    font-size: 1rem;
  }
  
  .buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
}

/* Feature Badge */
.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(101, 118, 255, 0.1);
  border-radius: 30px;
  padding: 8px 16px;
  width: fit-content;
  border: 1px solid rgba(101, 118, 255, 0.2);
}

.feature-badge .icon {
  color: var(--highlight-color);
  height: 16px;
}

.feature-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--highlight-color);
}

.feature-card {
  background-color: rgb(255 255 255 / 0%) !important;
  border: 1px solid #ffffff26;
}

/* Navbar styles */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}

/* Footer styles */
footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Kampanya Geri Sayım Stileri */
.campaign-countdown-container {
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(101, 118, 255, 0.18);
  background: linear-gradient(145deg, rgba(30, 35, 45, 0.9), rgba(40, 45, 60, 0.85));
  border: 1px solid rgba(101, 118, 255, 0.35) !important;
  backdrop-filter: blur(15px);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.campaign-countdown-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(101, 118, 255, 0.1), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.campaign-countdown-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle at bottom left, rgba(185, 107, 211, 0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.campaign-countdown-container > .row {
  position: relative;
  z-index: 1;
}

.countdown-box, .quota-box {
  position: relative;
}

.countdown-timer {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(101, 118, 255, 0.08);
  border: 1px solid rgba(101, 118, 255, 0.2);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 70px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(101, 118, 255, 0.15);
  background: rgba(101, 118, 255, 0.12);
}

.countdown-value {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.countdown-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-separator {
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  align-self: center;
  margin-top: -5px;
}

/* Kontenjan Göstergesi Stilleri */
.quota-box {
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.quota-progress {
  margin-right: 20px;
  position: relative;
}

.progress {
  height: 10px !important;
  width: 140px !important;
  border-radius: 10px !important;
  background-color: rgba(30, 35, 45, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar {
  background: linear-gradient(to right, #ff5252, #ff1a1a) !important;
  box-shadow: 0 0 10px rgba(255, 82, 82, 0.5);
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progress-shine 3s ease-in-out infinite;
}

@keyframes progress-shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.quota-badges {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.quota-badge.start {
  transform: translateX(-50%);
}

.quota-badge.end {
  transform: translateX(50%);
}

.quota-value {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ff5252, #ff3333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
}

.quota-value::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 82, 82, 0.4);
}

.quota-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px !important;
  font-weight: 500;
}

.text-white-50 {
  font-weight: 500;
}

/* Text Animasyonları */
@keyframes pulse {
  0% { 
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.01);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.text-pulse {
  animation: pulse 0.5s ease-in-out;
  text-shadow: 0 0 10px rgba(255, 82, 82, 0.8);
}

/* Responsive Ayarlar */
@media (max-width: 767px) {
  .campaign-countdown-container {
    padding: 20px !important;
  }
  
  .countdown-timer {
    justify-content: center;
  }
  
  .countdown-item {
    min-width: 60px;
    padding: 8px 0;
  }
  
  .countdown-value {
    font-size: 24px;
  }
  
  .countdown-label {
    font-size: 10px;
  }
  
  .countdown-separator {
    font-size: 22px;
  }
  
  .quota-box {
    margin-top: 15px;
  }
  
  .quota-value {
    font-size: 32px;
  }
  
  .progress {
    width: 120px !important;
  }
}

@media (max-width: 575px) {
  .countdown-item {
    min-width: 50px;
    padding: 6px 0;
  }
  
  .countdown-value {
    font-size: 20px;
  }
  
  .countdown-label {
    font-size: 9px;
    margin-top: 3px;
  }
  
  .countdown-separator {
    font-size: 18px;
  }
}

/* Form Vurgu Efekti */
@keyframes formHighlight {
  0% {
    box-shadow: 0 0 10px rgba(101, 118, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(101, 118, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 10px rgba(101, 118, 255, 0.2);
  }
}

.highlight-form {
  animation: formHighlight 2s infinite;
}

/* Aciliyet Efekti */
.urgent-countdown {
  animation: pulseEffectAnim 1.5s infinite;
}

@keyframes pulseEffectAnim {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.03);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.pulse-effect {
  animation: pulseEffectAnim 2s infinite;
}

/* Kimler Yararlanabilir Bölümü */
.eligibility-card {
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.eligibility-card:hover {
  box-shadow: 0 0 30px rgba(101, 118, 255, 0.15);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.eligibility-card h3 {
  color: white;
  font-weight: 600;
}

.eligibility-card ul li strong {
  color: white;
}

.eligibility-card ul li {
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  background-color: rgba(255, 255, 255, 0.03);
  margin-bottom: 10px;
  overflow: hidden;
}

.eligibility-card ul li:hover {
  background-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.eligibility-card ul li .position-absolute.w-1 {
  width: 4px !important;
  transition: all 0.3s ease;
}

.eligibility-card ul li:hover .position-absolute.w-1 {
  width: 6px !important;
}

.eligibility-card ul li i {
  transition: all 0.3s ease;
}

.eligibility-card ul li:hover i {
  transform: scale(1.2);
}

.application-process {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.application-process::before,
.application-process::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(50px);
  opacity: 0.15;
}

.application-process::before {
  background: var(--highlight-color);
  top: -50px;
  left: -50px;
}

.application-process::after {
  background: var(--secondary-color);
  bottom: -50px;
  right: -50px;
}

.process-step {
  text-align: center;
  padding: 20px 10px;
  position: relative;
}

.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(101, 118, 255, 0.2), rgba(185, 107, 211, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(101, 118, 255, 0.2);
}

.process-step:hover .process-icon {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(101, 118, 255, 0.3);
}

.process-number {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--highlight-color);
  border-radius: 50%;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.pulse-effect {
  animation: pulseEffectAnim 2s infinite;
}

@media (max-width: 767px) {
  .process-step {
    padding-bottom: 30px;
  }
  
  .application-process .row > div:last-child .process-step {
    padding-bottom: 0;
  }
}

/* Teşekkürler sayfası stilleri */
.thank-you-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.thank-you-container::before,
.thank-you-container::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101, 118, 255, 0.1) 0%, rgba(101, 118, 255, 0) 70%);
  z-index: -1;
}

.thank-you-container::before {
  top: -150px;
  left: -150px;
}

.thank-you-container::after {
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(185, 107, 211, 0.1) 0%, rgba(185, 107, 211, 0) 70%);
}

.thank-you-container .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: rgba(101, 118, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--highlight-color);
  animation: pulse 2s infinite;
}

.thank-you-container h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 32px;
}

.thank-you-container > p {
  text-align: center;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.appointment-details,
.what-next,
.important-info {
  margin-top: 40px;
  padding: 25px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.appointment-details h3,
.what-next h3,
.important-info h3 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 22px;
  color: var(--highlight-color);
}

.appointment-detail-item {
  display: flex;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.appointment-detail-item:last-child {
  border-bottom: none;
}

.appointment-detail-label {
  flex: 0 0 140px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.appointment-detail-value {
  flex: 1;
  color: rgba(255, 255, 255, 0.7);
}

.appointment-date-time {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  animation: formHighlight 2s ease-in-out infinite;
}

.date-time-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--highlight-color);
  font-size: 18px;
}

.date-time-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.date-time-content .date,
.date-time-content .time {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 30px;
  width: fit-content;
}

.date-time-content .date i,
.date-time-content .time i {
  margin-right: 8px;
  color: var(--highlight-color);
}

.calendar-buttons,
.social-share-container {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
}

.calendar-buttons h4,
.social-share-container h4 {
  color: var(--highlight-color);
  margin-bottom: 15px;
}

.btn-default {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-default:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: white;
}

.btn-sm {
  padding: 8px 15px;
  font-size: 14px;
}

.btn-whatsapp:hover {
  background-color: #25d366;
}

.btn-facebook:hover {
  background-color: #3b5998;
}

.btn-twitter:hover {
  background-color: #1da1f2;
}

.btn-linkedin:hover {
  background-color: #0077b5;
}

.btn-email:hover {
  background-color: #dd4b39;
}

.btn-copy:hover {
  background-color: #6c757d;
}

.what-next-list,
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-next-list li,
.info-list li {
  margin-bottom: 15px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.what-next-list li:hover,
.info-list li:hover {
  background-color: rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(101, 118, 255, 0.1);
}

.what-next-list li i,
.info-list li .info-header i {
  color: var(--highlight-color);
  margin-right: 15px;
  font-size: 22px;
}

.what-next-list li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.info-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.info-header strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.info-description {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 38px;
}

.thank-you-buttons {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 767px) {
  .thank-you-container {
    padding: 30px 20px;
  }
  
  .appointment-detail-item {
    flex-direction: column;
  }
  
  .appointment-detail-label {
    flex: 1;
    margin-bottom: 5px;
  }
  
  .date-time-content {
    flex-direction: column;
  }
  
  .date-time-content .date,
  .date-time-content .time {
    width: 100%;
    justify-content: center;
  }
  
  .calendar-buttons .btn-default,
  .social-share-container .btn-default {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .info-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .info-description {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* Taksit banner ve collapse stilleri */
.installment-banner {
    transition: all 0.3s ease;
}

.installment-banner:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.35) !important;
}

#installmentTableBtn {
    transition: all 0.3s ease;
    background-color: #fff;
    color: var(--bs-primary);
    border-color: #fff;
    font-weight: 600;
}

#installmentTableBtn:hover {
    background-color: #f0f0f0;
    color: var(--bs-primary);
    border-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Taksit listesi collapse stilleri */
#installmentCollapse {
    transition: all 0.3s ease;
}

#installmentCollapse .card {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: collapseIn 0.4s ease-out forwards;
}

@keyframes collapseIn {
    0% { 
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#installmentCollapse .card-header, 
#installmentCollapse .card-footer {
    padding: 12px 20px;
}

#installmentCollapse .list-group-item {
    transition: all 0.3s ease;
    border-left: 0;
    border-right: 0;
}

#installmentCollapse .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
    transform: translateX(5px);
}

#installmentCollapse .card-footer .btn-primary {
    min-width: 180px;
}

/* Collapsing animation */
.collapsing {
    transition: height 0.35s ease;
}

/* Modal stillerini karanlık temaya uyumlu hale getir */
.modal-content {
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background: linear-gradient(145deg, #1e2330, #262d3d);
}

.modal-backdrop {
    z-index: 1050 !important;
}

.modal-backdrop.show {
    opacity: 0.7;
}

#installmentModal {
    z-index: 1060 !important;
}

/* Custom backdrop for modal */
.modal-custom-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1055;
    display: none;
    backdrop-filter: blur(5px);
}

/* Modal görünümünü iyileştir */
#installmentModal .modal-dialog {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
}

#installmentModal .modal-content {
    transform: scale(1.01);
    animation: modalPop 0.3s forwards;
}

@keyframes modalPop {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-header {
    background-color: rgba(101, 118, 255, 0.1);
    border-bottom: 1px solid rgba(101, 118, 255, 0.2);
}

.modal-footer {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(101, 118, 255, 0.2);
}

.modal-title {
    color: var(--bs-primary);
    font-weight: 600;
}

#installmentModal .list-group-item {
    transition: all 0.3s ease;
}

#installmentModal .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
    transform: translateX(5px);
}

#installmentModal .modal-body {
    padding: 1.5rem;
}

#installmentModal .btn-primary {
    padding: 8px 25px;
}

.btn-outline-light {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.bi-tag {
    transform: rotate(-90deg);
    transition: all 0.3s ease;
}

.btn:hover .bi-tag {
    transform: rotate(-90deg) translateX(2px);
}
