@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #0066ff;
  --secondary-color: #f5f5f5;
  --text-dark: #333333;
  --text-light: #666666;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: #f8f9fa;
}

#wrapper {
  flex: 1;
}

/* Navbar Styles */
.navbar-custom {
  background: transparent;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: #ffffff !important;
  font-size: 1.25rem;
  margin: 0 auto;
}

.logo-img {
  height: 170px;
  width: auto;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffc107 !important;
}
.navbar-nav.ms-auto li span {
  color: #ffffff !important;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
  font-size: 20px;
  border: 1px solid;
  padding: 10px;
  border-radius: 8px;
}
/* Hero Section */
.hero {
  min-height: calc(80vh + 100px);
  background: url("../images/images-bg-2.png"),
    linear-gradient(135deg, #2d1b4e 0%, #1a0f35 100%) no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  margin-top: 0;
  overflow: hidden;
  width: 100%;
}

.hero .row {
  align-items: center;
  width: 100%;
}

.hero .col-md-6:first-child {
  color: #ffffff;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}
.button-group {
  padding: 60px 0;
}
.btn1 {
  display: inline-block;
  padding: 12px 32px;
  background-color: #ffc107;
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #ffc107;
  margin-right: 15px;
}

.btn1:hover {
  background-color: transparent;
  color: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.animated {
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

.hero-left img {
  width: 60%;
}

.hero-image {
  display: flex;
  flex-direction: column;
}

.hero-image h2 {
  color: #ffffff;
  margin-top: 20px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation-name: pulse;
  animation-duration: 3s;
}

/* Neon Text Effect for hero-text-neon */
.hero-text-neon h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #12b9e4, 0 0 40px #12b9e4;
  animation: neon-flicker 5s infinite alternate;
}

@keyframes neon-flicker {
  0%,
  18%,
  22%,
  25%,
  53%,
  57%,
  100% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 20px #12b9e4,
      0 0 30px #12b9e4;
  }
  20%,
  24%,
  55% {
    opacity: 0.2;
    text-shadow: none;
  }
}
.hero-text-neon h2 {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 700;
}

/* Content Section */
.content {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a0f35;
  margin-bottom: 20px;
}

.content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.basvuru-form {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 20px;
}

.form-control {
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.1);
}

.form-check {
  display: flex;
}

.form-check-input {
  margin-top: 4px;
  margin-right: 12px;
}

.form-check-label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.kvkk-link {
  color: #0066ff;
  text-decoration: none;
  font-weight: 500;
}

.kvkk-link:hover {
  text-decoration: underline;
}

.btn-basvuru {
  background-color: #1a0f35;
  color: #ffffff;
  padding: 14px 40px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-basvuru:hover {
  background-color: #2d1b4e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 15, 53, 0.2);
}

.content-left {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}
.content-box-image {
  text-align: center;
  margin-bottom: 20px;
}
.content-box-image svg {
  max-width: 100%;
  width: 20%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  color: #12b9e4;
}
.content-box-image h3 {
  margin-top: 15px;
  font-size: 1.25rem;
  color: #1a0f35;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .navbar-nav .nav-link {
    margin: 8px 0;
  }

  .hero-image {
    margin-top: 40px;
    justify-content: center;
  }
}

/* Footer Styles */
.footer {
  background-color: #f8f9fa;
  padding: 60px 0 30px;
  border-top: 1px solid #e0e0e0;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a0f35;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #0066ff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #1a0f35;
  text-decoration: underline;
}

.footer-logo {
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.phone-icon {
  font-size: 2rem;
  color: #10b9e4;
}

.phone-number a {
  font-size: 2rem;
  font-weight: 700;
  color: #10b9e4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-number a:hover {
  color: #3a80c9;
}
.footer-right {
  display: flex;
  flex-direction: column;
  /* justify-content: flex-start; */
  justify-self: flex-end;
}

.kvkk-link a {
  color: #10b9e4;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.kvkk-link a:hover {
  color: #1a0f35;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .contact-info {
    flex-direction: row;
    align-items: flex-start;
    align-items: center;
  }

  .phone-number a {
    font-size: 1.5rem;
  }

  .footer-logo {
    margin: 30px 0;
    display: flex;
    justify-content: center;
  }
  .footer-right {
    justify-self: auto;
  }
}

/* Kampanya Page Styles */
.kampanya-section {
  min-height: calc(100vh - 80px);
  background: linear-gradient(135deg, #e8f0ff 0%, #f3e7f9 100%);
  padding: 100px 0 60px;
  display: flex;
  align-items: center;
  margin-top: 80px;
}

.kampanya-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.kampanya-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a0f35;
  margin-bottom: 20px;
  line-height: 1.3;
}

.kampanya-description {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.kampanya-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.feature-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a0f35;
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Price Card */
.price-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.price-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.price-info {
  text-align: center;
}

.price-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.price-tag i {
  color: #ff6b35;
  font-size: 1.2rem;
}

.price-label {
  color: #ff6b35;
  font-weight: 600;
  font-size: 1rem;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 1rem;
}

.current-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 20px;
}

.price {
  font-size: 4.5rem;
  font-weight: 700;
  color: #667eea;
  line-height: 1;
}

.price-decimal {
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
  margin-top: 5px;
}

.btn-super-indirme {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-super-indirme:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-incele {
  background: linear-gradient(135deg, #1a0f35 0%, #2d1b4e 100%);
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-incele:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(26, 15, 53, 0.3);
}
.btn-incele a {
  color: #ffffff;
  text-decoration: none;
}
.price-note {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Responsive for Kampanya Page */
@media (max-width: 768px) {
  .kampanya-section {
    padding: 80px 0 40px;
  }

  .kampanya-card {
    padding: 30px 20px;
  }

  .kampanya-content h1 {
    font-size: 1.8rem;
  }

  .price-card {
    margin-top: 40px;
    position: static;
  }

  .price {
    font-size: 3rem;
  }

  .price-decimal {
    font-size: 1.5rem;
  }
  .logo-img {
    height: 100px;
    width: auto;
  }
  .hero-text-neon h2 {
    font-size: 2rem;
  }
}
