:root {
  --primary-color: #2C296F;
  --secondary-color: #4C49A3;
  --accent-color: #7C3AED;
  --light-purple: #E0E7FF;
  --success-color: #10b981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --bg-light: #FAFBFF;
  --bg-gradient: linear-gradient(135deg, #FAFBFF 0%, #F3F4F6 100%);
  --border-color: #E5E7EB;
  --gradient-primary: linear-gradient(135deg, #2C296F 0%, #4C49A3 40%, #548ee6 80%, #A855F7 100%);
  --gradient-accent: linear-gradient(135deg, #5b98dd 0%, #2C296F 100%);
  --gradient-hero: linear-gradient(135deg, #2C296F 0%, #4C49A3 40%, #548ee6 80%, #A855F7 100%);
  --shadow-soft: 0 10px 40px -10px rgba(44, 41, 111, 0.15);
  --shadow-medium: 0 20px 50px -15px rgba(44, 41, 111, 0.25);
  --shadow-strong: 0 25px 60px -12px rgba(44, 41, 111, 0.35);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   MAIN NAVIGATION STYLES
   ========================================================================== */

.main-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 41, 111, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo Styles */
.navbar-logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.logo-link:hover {
  text-decoration: none;
  color: var(--secondary-color);
}

.navbar-logo-img {
  height: 60px;
  width: auto;
  margin-right: 12px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

/* Navigation Menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-direction: row; /* Desktop'ta yan yana */
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* WhatsApp Button */
.navbar-actions {
  display: flex;
  align-items: center;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
}

.whatsapp-btn i {
  font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Scrolled State */
.main-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(44, 41, 111, 0.1);
}

/* Desktop navbar layout - override mobile styles */
@media (min-width: 992px) {
  .navbar-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    background: transparent !important;
    padding: 0 !important;
    flex-direction: row !important;
    backdrop-filter: none !important;
    border-top: none !important;
  }

  .navbar-nav {
    flex-direction: row !important;
    width: auto !important;
  }

  .nav-link {
    border-bottom: none !important;
  }

  .whatsapp-btn {
    margin-top: 0 !important;
  }
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(44, 41, 111, 0.1);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  .navbar-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(44, 41, 111, 0.1);
  }

  .whatsapp-btn {
    margin-top: 1rem;
    justify-content: center;
  }

  .navbar-content {
    padding: 0.75rem 0;
  }

  .navbar-logo-img {
    height: 35px;
  }

  .logo-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .navbar-logo-img {
    height: 30px;
    margin-right: 8px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-btn {
    padding: 0.75rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
  }
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--bg-gradient);
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 30%, #f1f5f9 70%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 20px 0; /* Top padding for fixed navbar */
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-primary);
  text-align: left;
  padding: 2rem 0;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

/* Hero Title */
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.7rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 1s ease-out 0.2s both;
  color: var(--text-primary);
  line-height: 1.1;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-weight: 400;
  animation: fadeInUp 1s ease-out 0.4s both;
  line-height: 1.7;
  max-width: 500px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.6s both;
  flex-wrap: wrap;
}

.btn-primary-hero {
  background: var(--gradient-accent);
  color: white;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(44, 41, 111, 0.3);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(44, 41, 111, 0.4);
  color: white;
  text-decoration: none;
}

.btn-secondary-hero {
  background: transparent;
  color: var(--primary-color);
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Hero Stats - Removed as per user request */

/* Hero Image Section */
.hero-image-wrapper {
  position: relative;
  animation: fadeInUp 1s ease-out 1s both;
}

.hero-image-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-campus-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.hero-campus-image:hover {
  transform: scale(1.05);
}

/* Floating Info Cards */
.floating-info {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 180px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 3s ease-in-out infinite;
}

.floating-info i {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
}

.floating-info-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-info-2 {
  bottom: 50%;
  left: -15%;
  animation-delay: 1s;
}

.floating-info-3 {
  bottom: 10%;
  right: -5%;
  animation-delay: 2s;
}

.info-title {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.info-desc {
  display: block;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* FadeInUp Animation */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}




/* Large screens */
@media (min-width: 1200px) {
  .hero-title {
      font-size: 3.5rem;
  }

  .hero-subtitle {
      font-size: 1.1rem;
  }

  .hero-campus-image {
      height: 500px;
  }

  .floating-info {
      min-width: 200px;
      padding: 1.2rem 1.8rem;
  }
}

/* Why Work With Us Section */
.why-section {
  padding: 8rem 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}



.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  width: 100%;
}



.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.5;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 2px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 30px 30px 0 0;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.feature-card:hover::after {
  width: 300px;
  height: 300px;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.feature-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px -5px rgba(30, 58, 138, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px -5px rgba(30, 58, 138, 0.5);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Values Section */
.values-section {
  padding: 8rem 0;
  background: white;
  position: relative;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
      radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

.value-item {
  text-align: center;
  padding: 2.5rem;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.3);
}

.value-item:hover .value-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px -5px rgba(6, 182, 212, 0.5);
}

.value-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.value-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0f9ff 50%, #e0f2fe 100%);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 5rem;
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
  transition: left 0.6s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.benefit-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.4rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px -5px rgba(30, 58, 138, 0.3);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px -5px rgba(30, 58, 138, 0.5);
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.benefit-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* Application Form Section */
.application-section {
  padding: 8rem 0;
  background: white;
  position: relative;
}

.application-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.form-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 35px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  border: 2px solid var(--glass-border);
  position: relative;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-accent);
}

.form-header {
  background: var(--gradient-hero);
  color: white;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.form-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.form-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--primary-color);
}

.form-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.form-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.form-content {
  padding: 4rem 3rem;
}

.info-text {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 6px solid var(--accent-color);
  padding: 2.5rem;
  border-radius: 15px;
  margin-bottom: 4rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  box-shadow: 0 5px 15px -5px rgba(6, 182, 212, 0.2);
}

.required-text {
  font-weight: 700;
  color: var(--error-color);
  margin-top: 1.5rem;
  font-size: 1rem;
}

.form-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 3rem 0 2rem 0;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--accent-color);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}



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

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  display: block;
  font-size: 1rem;
}

.form-label.required::after {
  content: ' *';
  color: var(--error-color);
  font-weight: 700;
}

.form-control, .form-select {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fafafa;
  font-weight: 500;
}

.form-control:focus, .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
  background-color: white;
  outline: none;
  transform: translateY(-2px);
}

.form-control:hover, .form-select:hover {
  border-color: var(--accent-color);
  background-color: white;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.experience-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}

.experience-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.submit-btn {
  background: var(--gradient-accent);
  border: none;
  color: white;
  padding: 1.3rem 4rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 60px;
  cursor: pointer;
  display: block;
  margin: 4rem auto 0;
  min-width: 250px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 50px -10px rgba(6, 182, 212, 0.6);
}

.file-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.file-input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.file-input-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fafafa;
  color: var(--text-secondary);
  font-weight: 500;
}

.file-input-label:hover {
  border-color: var(--accent-color);
  background-color: #f0f9ff;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.file-input:focus + .file-input-label {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-text {
  opacity: 0.95;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
}

.contact-item i {
  font-size: 1.2rem;
}

/* Footer Links */
.footer-links {
  margin-top: 20px;
}

.footer-links a {
  margin: 0 10px;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-copyright {
  margin-top: 3rem;
  text-align: center;
}

.email-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--accent-color);
}

/* Mobile Header */
  .mobile-header {
    background: var(--gradient-hero);
    padding: 3.5rem 1rem;
    text-align: center;
    color: white;
    display: none;
    position: relative;
    overflow: hidden;
  }

.mobile-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

  .mobile-header .mobile-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease-out;
  }

  .mobile-header h1 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  .mobile-header p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0.3rem 0 0 0;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  /* Hero Section Mobile - Compact and user-friendly */
  .hero-section {
      padding: 30px 0 20px;
  }

  /* Mobile: Stack content vertically with flex order */
  .hero-section .row {
      display: flex;
      flex-direction: column;
  }

  .hero-content {
      text-align: center;
      padding: 1rem 0;
      order: 2; /* Content comes after image on mobile */
  }

  .hero-image-wrapper {
      order: 1; /* Image comes first on mobile */
      margin-bottom: 2rem;
  }

  .col-lg-6 {
      width: 100%;
  }

  .hero-badge {
      font-size: 0.8rem;
      padding: 0.6rem 1.2rem;
      margin-bottom: 1rem;
  }

  .hero-title {
      font-size: 2rem;
      margin-bottom: 1rem;
      line-height: 1.3;
  }

  .hero-subtitle {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      max-width: 100%;
      line-height: 1.5;
  }

  .hero-buttons {
      flex-direction: column;
      gap: 0.8rem;
      margin-bottom: 0;
      align-items: center;
  }

  .btn-primary-hero,
  .btn-secondary-hero {
      padding: 0.9rem 2rem;
      font-size: 0.95rem;
      width: 280px;
      justify-content: center;
  }

  /* Mobile image optimization */
  .hero-image-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .hero-campus-image {
      height: 250px;
      width: 250px;
      margin: 0 auto;
      display: block;
  }

  .floating-info {
      display: none; /* Hide floating cards on mobile */
  }

  /* Mobile: Why section closer to hero */
  .why-section {
      padding: 3rem 0;
  }

  .footer {
      display: none;
  }

  /* Hide mobile header */
  .mobile-header {
      display: none;
  }

  /* Show only application form on mobile */
  .application-section {
      padding: 0.5rem 0;
      min-height: auto;
  }

  .application-section .container {
      padding: 0.5rem;
  }

  .section-title {
      display: none;
  }

  .section-subtitle {
      display: none;
  }

  .form-container {
      margin: 0 0.5rem;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      overflow: hidden;
  }

  .form-header {
      background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
      padding: 2rem 1.5rem;
      text-align: center;
      border-bottom: 3px solid var(--primary-color);
  }

  .form-title {
      font-size: 1.6rem;
      margin-bottom: 0.8rem;
      color: var(--primary-color);
      font-weight: 700;
  }

  .form-subtitle {
      font-size: 1rem;
      margin-bottom: 0;
      color: var(--text-secondary);
      font-weight: 400;
  }

  .form-content {
      padding: 2rem 1.5rem;
      background: white;
  }

  .info-text {
      display: none;
  }

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

  .form-label {
      font-size: 0.85rem;
      margin-bottom: 0.2rem;
      font-weight: 600;
  }

  .form-control, .form-select {
      padding: 0.6rem;
      font-size: 0.85rem;
      border-radius: 6px;
      border: 1px solid #ddd;
  }

  .form-control:focus, .form-select:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
  }

  .experience-card {
      padding: 1.5rem;
      margin-bottom: 1rem;
      border-radius: 10px;
  }

  .experience-title {
      font-size: 1rem;
      margin-bottom: 1rem;
  }

  .submit-btn {
      padding: 1rem 2rem;
      font-size: 1rem;
      width: 100%;
      margin-top: 1.5rem;
  }

  .file-input-label {
      padding: 0.8rem;
      font-size: 0.9rem;
  }

  /* Compact row spacing */
  .row {
      margin-bottom: 0.5rem;
  }

  .col-md-6, .col-md-4 {
      margin-bottom: 0.5rem;
  }
}

/* Tablet responsive */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-section {
      padding: 40px 0;
  }

  .hero-content {
      padding: 1.5rem 0;
  }

  .hero-title {
      font-size: 2.8rem;
  }

  .hero-subtitle {
      font-size: 1.1rem;
  }

  .hero-buttons {
      margin-bottom: 2rem;
  }

  .hero-campus-image {
      height: 350px;
  }

  .floating-info {
      min-width: 140px;
      padding: 0.7rem 1rem;
      font-size: 0.85rem;
  }

  .info-title {
      font-size: 0.8rem;
  }

  .info-desc {
      font-size: 0.7rem;
  }

  .section-title {
      font-size: 2.5rem;
  }

  .form-content {
      padding: 2rem;
  }

  .feature-card {
      padding: 2.5rem 2rem;
  }

  .contact-info {
      gap: 2rem;
      flex-direction: column;
      align-items: center;
  }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
  .hero-section {
      padding: 70px 0 15px;
  }

  .hero-content {
      padding: 0.5rem 0;
  }

  .hero-badge {
      font-size: 0.75rem;
      padding: 0.5rem 1rem;
      margin-bottom: 0.8rem;
  }

  .hero-title {
      font-size: 1.7rem;
      margin-bottom: 0.8rem;
  }

  .hero-subtitle {
      font-size: 0.9rem;
      margin-bottom: 1.2rem;
      padding: 0 10px;
  }

  .hero-buttons {
      gap: 0.6rem;
      margin-bottom: 0;
  }

  .btn-primary-hero,
  .btn-secondary-hero {
      width: 240px;
      padding: 0.8rem 1.5rem;
      font-size: 0.9rem;
  }

  .hero-image-wrapper {
      margin-bottom: 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .hero-campus-image {
      height: 200px;
      width: 200px;
      margin: 0 auto;
      display: block;
  }

  .application-section {
      padding: 1rem 0;
  }

  .section-title {
      font-size: 1.5rem;
  }

  .section-subtitle {
      font-size: 0.9rem;
  }

  .form-container {
      margin: 0 0.5rem;
      border-radius: 10px;
  }

      .form-header {
        padding: 1.5rem 1rem;
    }

  .form-title {
      font-size: 1.3rem;
  }

  .form-subtitle {
      font-size: 0.8rem;
  }

  .form-content {
      padding: 1rem;
  }

  .info-text {
      padding: 0.8rem;
      font-size: 0.8rem;
  }

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

  .form-control, .form-select {
      padding: 0.5rem;
      font-size: 0.8rem;
  }

  .experience-card {
      padding: 0.8rem;
  }

  .submit-btn {
      padding: 0.8rem 1.2rem;
      font-size: 0.85rem;
  }

  textarea.form-control {
      min-height: 60px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Animation utilities */
/* Fade in animations disabled */
/*
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
*/

/* Loading animation for form */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success message */
.success-message {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  text-align: center;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.success-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* KVKK Checkbox Styles */
.kvkk-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background-color: #f8f9ff;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.kvkk-checkbox:hover {
  border-color: var(--secondary-color);
  background-color: #f0f4ff;
}

.kvkk-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.kvkk-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
  cursor: pointer;
  margin: 0;
  flex: 1;
}

.kvkk-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.kvkk-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.required-star {
  color: var(--error-color);
  font-weight: bold;
}

/* KVKK Modal Styles */
.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-header {
  background: var(--gradient-primary);
  color: white;
  border-radius: 16px 16px 0 0;
  padding: 15px 25px;
}

.modal-title {
  font-weight: 600;
  font-size: 16px;
}

.btn-close {
  filter: brightness(0) invert(1);
}

.modal-body {
  padding: 20px 25px;
  max-height: 75vh;
  overflow-y: auto;
  font-size: 12px;
  line-height: 1.5;
  position: relative;
}

/* KVKK Metin Stilleri */
.modal-body h3 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  border-bottom: 2px solid var(--light-purple);
  padding-bottom: 10px;
}

.modal-body h4 {
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 600;
  margin: 20px 0 10px 0;
  padding: 8px 12px;
  background-color: var(--light-purple);
  border-radius: 6px;
  border-left: 3px solid var(--primary-color);
}

.modal-body p {
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-align: justify;
}

.modal-body ul, .modal-body ol {
  padding-left: 15px;
  margin-bottom: 12px;
}

.modal-body li {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-align: justify;
}

.modal-body .table {
  font-size: 11px;
  margin-bottom: 15px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.modal-body .table td {
  padding: 8px 10px;
  vertical-align: top;
  border-bottom: 1px solid #f1f3f4;
}

.modal-body .table td:first-child {
  background-color: #f8f9ff;
  font-weight: 600;
  color: var(--primary-color);
  width: 30%;
}

.modal-body a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.modal-body a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Özel vurgular */
.modal-body strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Sayılandırılmış listeler */
.modal-body ol {
  counter-reset: item;
  padding-left: 0;
}

.modal-body ol > li {
  display: block;
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.modal-body ol > li:before {
  content: counter(item);
  counter-increment: item;
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  font-size: 10px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}

/* HR stili */
.modal-body hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 20px 0;
  border-radius: 1px;
}

/* Ekler bölümü */
.modal-body h4:last-of-type {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  margin-top: 25px;
}

.modal-footer {
  padding: 15px 25px;
  border-top: 1px solid #e9ecef;
  background-color: #f8f9fa;
}

.modal-footer .btn {
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
}

/* Scrollbar özelleştirme */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* KVKK Kabul Butonu */
#kvkk-accept-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

#kvkk-accept-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

#kvkk-accept-btn:active {
  transform: translateY(0);
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SweetAlert Toast Özelleştirmesi */
.swal-toast {
  font-size: 14px;
}

.swal-toast .swal2-title {
  font-size: 16px;
  color: var(--primary-color);
}

/* KVKK Checkbox Hover Efekti */
.kvkk-checkbox {
  transition: background-color 0.3s ease;
  border-radius: 8px;
  padding: 8px;
  margin: 0;
  position: relative;
}

.kvkk-checkbox:hover {
  background-color: #f8f9ff;
}

.kvkk-checkbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(59, 130, 246, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.kvkk-checkbox:hover::before {
  opacity: 1;
}

.kvkk-link {
  position: relative;
  transition: all 0.3s ease;
}

.kvkk-link:hover {
  color: var(--secondary-color) !important;
  text-decoration: none !important;
}



/* KVKK Modal Scroll İpuçları */
.modal-scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(248, 249, 250, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-scroll-indicator.hidden {
  opacity: 0;
}

.scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  animation: bounceArrow 2s infinite;
}

.scroll-arrow i {
  font-size: 18px;
  margin-bottom: 5px;
  animation: pulse 1.5s infinite;
}

@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* KVKK Modal Başlık Bilgilendirme */
.kvkk-info-banner {
  background: linear-gradient(135deg, #e0f2fe, #f3e5f5);
  border: 1px solid #b3e5fc;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.kvkk-info-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.kvkk-info-banner i {
  font-size: 16px;
  color: var(--secondary-color);
  animation: infoGlow 2s infinite alternate;
}

.kvkk-info-banner .info-text {
  flex: 1;
  line-height: 1.4;
}

.kvkk-info-banner .info-text strong {
  color: var(--secondary-color);
}

@keyframes infoGlow {
  0% {
    text-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
  }
  100% {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
  }
}

/* Progress Bar */
.kvkk-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: 1000;
  transition: width 0.3s ease;
  border-radius: 0 3px 3px 0;
}

/* SweetAlert Custom Styles */
.swal-custom-popup {
  border-radius: 16px !important;
  font-family: 'Poppins', sans-serif !important;
}

.swal-custom-title {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  font-size: 20px !important;
}

.swal-custom-html {
  color: var(--text-primary) !important;
  line-height: 1.6 !important;
}

.swal-custom-html ul {
  text-align: left !important;
  margin: 15px 0 !important;
}

.swal-custom-html li {
  margin-bottom: 8px !important;
  line-height: 1.5 !important;
}

/* ============================================= */
/* Contact Section                               */
/* ============================================= */

.contact-section {
    padding: 3rem 0 2rem;
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color);
}

.contact-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 25px;
    text-align: center;
}

.contact-item > div {
    font-size: 1rem;
}

.contact-item strong {
    font-weight: 600;
    color: var(--text-primary);
    margin-right: 0.5em;
}

.contact-item a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item span {
    font-weight: 500;
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-links .social-link {
    font-size: 1.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links .social-link:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: linear-gradient(11deg, #e6edf3 0%, #e2e8f0 100%);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 30px;
  text-align: center;
}

.about-image img {
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.02);
}

/* Experience Section */
.experience-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.experience-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.experience-image img {
  transition: transform 0.3s ease;
}

.experience-image:hover img {
  transform: scale(1.02);
}

/* Academic Section */
.academic-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  position: relative;
}

.academic-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.highlight-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-top: 0.2rem;
  width: 30px;
  text-align: center;
}

.highlight-item h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.highlight-item p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

.academic-image img {
  transition: transform 0.3s ease;
}

.academic-image:hover img {
  transform: scale(1.02);
}

/* Success Section */
.success-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.success-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.success-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.success-card h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.success-card p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* STEM Section */
.stem-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
}

.stem-features {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stem-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.stem-feature:hover {
  transform: translateY(-2px);
}

.stem-feature i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.stem-feature span {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.stem-image img {
  transition: transform 0.3s ease;
}

.stem-image:hover img {
  transform: scale(1.02);
}

/* Exam Section */
.exam-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.exam-programs {
  margin-top: 2rem;
}

.program-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.program-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.program-content h5 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.program-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.exam-image img {
  transition: transform 0.3s ease;
}

.exam-image:hover img {
  transform: scale(1.02);
}

/* Profile Section */
.profile-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 100%);
  position: relative;
}

.profile-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.profile-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.profile-card h5 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.profile-card p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Responsive Design for New Sections */
@media (max-width: 767px) {
  .about-section,
  .experience-section,
  .academic-section,
  .success-section,
  .stem-section,
  .exam-section,
  .profile-section {
    padding: 60px 0;
  }

  .experience-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    min-width: auto;
  }

  .stem-features {
    flex-direction: column;
  }

  .stem-feature {
    justify-content: center;
  }

  .program-item {
    flex-direction: column;
    text-align: center;
  }

  .program-icon {
    margin: 0 auto 1rem;
  }

  .highlight-item {
    flex-direction: column;
    text-align: center;
  }

  .highlight-item i {
    margin: 0 auto 1rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .experience-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stem-features {
    gap: 0.5rem;
  }

  .stem-feature {
    padding: 0.5rem 0.75rem;
  }
}

/* Animation for new sections */
.about-section,
.experience-section,
.academic-section,
.success-section,
.stem-section,
.exam-section,
.profile-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-section.visible,
.experience-section.visible,
.academic-section.visible,
.success-section.visible,
.stem-section.visible,
.exam-section.visible,
.profile-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced hover effects */
.about-image,
.experience-image,
.academic-image,
.stem-image,
.exam-image {
  position: relative;
  overflow: hidden;
}

.about-image::after,
.experience-image::after,
.academic-image::after,
.stem-image::after,
.exam-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 41, 111, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.about-image:hover::after,
.experience-image:hover::after,
.academic-image:hover::after,
.stem-image:hover::after,
.exam-image:hover::after {
  opacity: 1;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title-container {
    text-align: center;
    margin-bottom: 60px;
}

.features-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c296f;
    margin-bottom: 10px;
}

.features-section .section-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(44, 41, 111, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
}

/*--------------------------------------------------------------
# Form Success Message
--------------------------------------------------------------*/
.form-success-container {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.07);
    animation: fadeIn 0.5s ease-in-out;
}

.form-success-icon {
    width: 70px;
    height: 70px;
    background-color: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 30px;
    animation: popIn 0.3s ease-out 0.2s backwards;
}

.form-success-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c296f;
    margin-bottom: 10px;
}

.form-success-message {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.form-success-hr {
    border: 0;
    height: 1px;
    background-color: #eee;
    margin: 20px 0;
}

.form-success-footer {
    font-size: 14px;
    color: #777;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
    padding: 3rem 0 2rem;
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color);
}

.contact-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item div {
    font-size: 16px;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.campus-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
}

.campus-list li {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.campus-list li strong {
    color: #333;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* ... existing styles ... */

.campus-list {
    display: none; /* Hide old list */
}

.campus-cards-container {
    display: none; /* remove this container as it is no longer in use */
}

.campus-row-title {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.campus-row-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.campus-card-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%; /* Make cards in the same row equal height */
}

.campus-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(44, 41, 111, 0.1);
}

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

.campus-card-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.campus-card-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #343a40;
    margin: 0;
}

.campus-card-item p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    padding-left: 28px; /* Align with title */
}

.social-media-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    margin-top: 2rem; /* Add space above */
}

.social-links {
    display: flex;
    gap: 1rem;
}
/* ... rest of the styles ... */

/* Hide Old Sections */
.contact-section, .footer {
    display: none !important;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.footer-section {
    font-size: 14px;
    background-color: #2C296F;
    padding: 60px 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section .footer-info .logo {
    margin-bottom: 20px;
}

.footer-section .footer-info .logo img {
    max-height: 70px;
}

.footer-section .footer-info p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: #667eea;
}

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

.footer-section .footer-links ul li {
    padding: 0;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-section .footer-links ul i {
    font-size: 18px;
    padding-right: 12px;
    color: #667eea;
    margin-top: 1px;
}

.footer-section .footer-links ul div {
    line-height: 1;
}

.footer-section .footer-links ul h5 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.footer-section .footer-links ul p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-section .footer-contact p {
    line-height: 1.8;
}

.footer-section .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
}

.footer-section .social-links a:hover {
    color: #fff;
    border-color: #fff;
}

.footer-section .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section .copyright span {
    font-weight: bold;
    color: #fff;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 100px 0;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23e5e7eb" opacity="0.3"/><circle cx="80" cy="80" r="2" fill="%23e5e7eb" opacity="0.3"/></svg>');
    opacity: 0.1;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-section .section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gallery-section .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 41, 111, 0.85) 0%,
        rgba(76, 73, 163, 0.85) 50%,
        rgba(124, 58, 237, 0.85) 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 0;
    }
    
    .gallery-section .section-title {
        font-size: 2rem;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .gallery-content h5 {
        font-size: 1.1rem;
    }
    
    .gallery-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-section .row.g-3 {
        gap: 1rem !important;
    }
}

/* LGS Puan Hesaplama Stilleri */
.lgs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.lgs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23e2e8f0" stroke-width="1" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.lgs-form-container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 60px -12px rgba(44, 41, 111, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.exam-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px -10px rgba(44, 41, 111, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.exam-section:hover {
    box-shadow: 0 20px 50px -15px rgba(44, 41, 111, 0.15);
    transform: translateY(-2px);
}

.section-header {
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.section-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-label-center {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.exam-row {
    margin-bottom: 15px;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.exam-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.subject-name {
    font-weight: 500;
    color: var(--text-primary);
    padding: 12px 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.exam-section .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    background: #fafbff;
}

.exam-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 41, 111, 0.15);
    background: white;
}

.net-result {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0) !important;
    font-weight: 600;
    color: var(--primary-color);
    cursor: not-allowed;
}

.calculate-section {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
}

.btn-calculate {
    background: var(--gradient-accent);
    color: white;
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(44, 41, 111, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-calculate:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(44, 41, 111, 0.4);
    background: linear-gradient(135deg, #4C49A3, #2C296F);
}

.result-section {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 20px 50px -15px rgba(16, 185, 129, 0.3);
    text-align: center;
}

.result-header h4 {
    margin: 0 0 25px 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.total-score {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.score-label {
    font-size: 1.2rem;
    font-weight: 500;
}

.score-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.net-scores {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.net-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.success-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Üniversite Başarıları Stilleri */
.university-success-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.university-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(44, 41, 111, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.university-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px -15px rgba(44, 41, 111, 0.2);
}

.university-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.university-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.placement-count {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--success-color);
    margin-bottom: 5px;
}

.university-name {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.achievement-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px -10px rgba(44, 41, 111, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px -15px rgba(44, 41, 111, 0.15);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.achievement-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.achievement-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Sınav Hazırlık Süreci Stilleri */
.exam-prep-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.prep-stage {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(44, 41, 111, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.prep-stage:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px -15px rgba(44, 41, 111, 0.2);
}

.stage-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.prep-stage h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.prep-stage p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.prep-stage ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.prep-stage li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.prep-stage li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

.prep-statistics {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 15px 45px -15px rgba(44, 41, 111, 0.15);
}

.stat-box {
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px rgba(44, 41, 111, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .lgs-form-container {
        padding: 25px 20px;
    }
    
    .exam-section {
        padding: 20px 15px;
    }
    
    .section-header {
        padding: 12px 20px;
    }
    
    .section-header h4 {
        font-size: 1rem;
    }
    
    .form-label-center {
        font-size: 0.8rem;
        padding: 8px;
    }
    
    .subject-name {
        font-size: 0.85rem;
        padding: 10px 8px;
    }
    
    .btn-calculate {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .score-value {
        font-size: 2rem;
        padding: 8px 20px;
    }
    
    .net-scores {
        flex-direction: column;
        gap: 15px;
    }
    
    .total-score {
        flex-direction: column;
        gap: 10px;
    }
    
    .achievement-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .university-card {
        padding: 25px 15px;
    }
    
    .prep-stage {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Live Calculation Styles */
.live-stat-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.live-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.live-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
}

.live-stat-value {
    font-size: 13px;
    color: #495057;
    font-weight: 500;
}

.total-score-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.total-score-card:hover {
    border-color: #007bff;
    transform: translateY(-3px);
}

.total-score-label {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-score-value {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.live-calculation-animate {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================================
   ENHANCED SECTIONS - MOVED FROM INLINE STYLES
   ============================================== */

/* Badge Highlight Component */
.badge-highlight {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(44, 41, 111, 0.3);
}

/* Enhanced Features Section */
.features-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.features-section-enhanced .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.features-section-enhanced .section-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-section-enhanced .section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Feature Cards */
.feature-card-enhanced {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.feature-card-enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.feature-card-enhanced:hover .feature-highlight {
    transform: scaleX(1);
}

.feature-card-enhanced:hover .feature-icon {
    transform: scale(1.1);
}

/* Feature Icons with Color Variations */
.feature-icon-enhanced {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-icon-blue {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.feature-icon-green {
    background: linear-gradient(135deg, #10B981, #047857);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.feature-icon-orange {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.feature-icon-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.feature-icon-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.feature-icon-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 10px 25px rgba(44, 41, 111, 0.3);
}

/* Enhanced Feature Text */
.feature-title-enhanced {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-text-enhanced {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* Feature Highlight Bar */
.feature-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-highlight-blue {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
}

.feature-highlight-green {
    background: linear-gradient(135deg, #10B981, #047857);
}

.feature-highlight-orange {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.feature-highlight-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.feature-highlight-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.feature-highlight-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Enhanced Application Section */
.application-section-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.application-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%), 
                      linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%), 
                      linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    opacity: 0.4;
    z-index: 1;
}

.application-container {
    position: relative;
    z-index: 2;
}

.application-header {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.application-header .gradient-text {
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.application-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Form Container */
.form-container-enhanced {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.form-header-enhanced {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 40%, #60A5FA 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%), 
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.form-header-content {
    position: relative;
    z-index: 2;
}

.form-title-enhanced {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.form-subtitle-enhanced {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

/* Readonly Form Controls */
.form-control-readonly {
    background: #f8f9fa;
}

/* Live Calculation Card */
.live-calculation-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Enhanced Contact Section */
.contact-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.contact-header {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-header .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Cards */
.contact-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-card-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-right: 15px;
}

.contact-icon-blue {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
}

.contact-icon-orange {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

/* Contact Info List */
.contact-info-enhanced {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-enhanced {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item-enhanced:hover {
    background: #e0f2fe;
    transform: translateX(5px);
}

.contact-item-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.contact-item-icon-green {
    background: linear-gradient(135deg, #10B981, #047857);
}

.contact-item-icon-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.contact-item-icon-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Social Media Links */
.social-links-enhanced {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link-facebook {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1877F2, #0A5FCD);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.social-link-instagram {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.3);
}

.social-link-linkedin {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0077B5, #004471);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

.social-link-enhanced:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Social Media Info Box */
.social-info-box {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 15px;
    border-left: 4px solid #3B82F6;
}

.social-info-text {
    margin: 0;
    color: #1e40af;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Campus Section */
.campus-header {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.campus-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Campus Cards */
.campus-card-enhanced {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.campus-card-enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.campus-card-enhanced:hover .campus-highlight {
    transform: scaleX(1);
}

.campus-card-header-enhanced {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.campus-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
}

.campus-icon-blue {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.campus-icon-green {
    background: linear-gradient(135deg, #10B981, #047857);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.campus-icon-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.campus-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.campus-address {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
}

.campus-address-blue {
    border-left: 4px solid #3B82F6;
}

.campus-address-green {
    border-left: 4px solid #10B981;
}

.campus-address-purple {
    border-left: 4px solid #8B5CF6;
}

.campus-address .map-icon {
    margin-right: 8px;
}

.campus-address .map-icon-blue {
    color: #3B82F6;
}

.campus-address .map-icon-green {
    color: #10B981;
}

.campus-address .map-icon-purple {
    color: #8B5CF6;
}

/* Campus Highlight Bar */
.campus-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.campus-highlight-blue {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
}

.campus-highlight-green {
    background: linear-gradient(135deg, #10B981, #047857);
}

.campus-highlight-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

/* LGS Coefficients Section */
.lgs-coefficients-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.coefficients-header {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.coefficients-header .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coefficients-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Mobile Responsive Styles for Table */
@media (max-width: 768px) {
    .table-responsive {
        margin: 30px 0;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }
    
    .table-header-cell,
    .table-data-cell,
    .table-subject-cell {
        padding: 12px 8px;
        font-size: 10px;
    }
    
    .table-header-cell:first-child,
    .table-subject-cell {
        padding-left: 15px;
        font-size: 11px;
    }
    
    .table-current-year {
        font-size: 13px;
        border-radius: 6px;
    }
    
    .stats-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .stats-value {
        font-size: 2rem;
    }
    
    .stats-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .table-header-cell,
    .table-data-cell {
        padding: 8px 4px;
        font-size: 9px;
    }
    
    .table-subject-cell {
        padding: 12px 8px;
        font-size: 10px;
    }
    
    .table-current-year {
        font-size: 11px;
    }
    
    .stats-value {
        font-size: 1.8rem;
    }
}

/* LGS Booklets Section */
.lgs-booklets-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
}

.booklets-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.02) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.02) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    opacity: 0.3;
    z-index: 1;
}

.booklets-container {
    position: relative;
    z-index: 2;
}

.booklets-header {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.booklets-header .gradient-text {
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booklets-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Booklets Notice Container */
.booklets-notice-enhanced {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booklets-notice-header {
    margin-bottom: 30px;
    text-align: center;
}

.booklets-notice-title {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 700;
}

.booklets-notice-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

/* Booklet Download Cards */
.booklet-card-enhanced {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.booklet-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.booklet-icon-enhanced {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.booklet-icon-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.3);
}

.booklet-icon-green {
    background: linear-gradient(135deg, #10B981, #047857);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
}

.booklet-title {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.booklet-description {
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

.booklet-subjects {
    font-weight: 600;
}

.booklet-meta {
    font-size: 14px;
    opacity: 0.8;
}

/* Download Buttons */
.download-btn {
    border: none;
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    color: white;
}

.download-btn-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.download-btn-red:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
    color: white;
    text-decoration: none;
}

.download-btn-green {
    background: linear-gradient(135deg, #10B981, #047857);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.download-btn-green:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

/* Booklet Bottom Bar */
.booklet-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.booklet-bottom-bar-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.booklet-bottom-bar-green {
    background: linear-gradient(135deg, #10B981, #047857);
}

/* Notice Footer */
.booklets-notice-footer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.notice-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 15px 25px;
    border-radius: 15px;
    border-left: 4px solid #3B82F6;
}

.notice-badge-text {
    color: #1e40af;
    font-weight: 600;
    font-size: 15px;
}

/* Info Boxes */
.info-box-enhanced {
    background: rgba(255,255,255,0.15);
    padding: 35px;
    border-radius: 20px;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.info-box-enhanced:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.25);
}

.info-box-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.info-box-icon-blue {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.info-box-icon-green {
    background: linear-gradient(135deg, #10B981, #047857);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
}

.info-box-icon-orange {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
}

.info-box-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-box-text {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Hidden Result Div */
.result-hidden {
    display: none;
}

/* ==============================================
   LGS COEFFICIENTS SECTION STYLES
   ============================================== */

/* Section Styling */
.lgs-coefficients-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #34436b 0%, #191a1c 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.lgs-coefficients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(59, 130, 246, 0.02) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(59, 130, 246, 0.02) 25%, transparent 25%);
    background-size: 60px 60px;
    opacity: 0.5;
    z-index: 1;
}

.lgs-coefficients-section .container {
    position: relative;
    z-index: 2;
}

/* Section Title & Subtitle */
.lgs-coefficients-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(44, 41, 111, 0.1);
}

.lgs-coefficients-section .section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Badge Styling */
.lgs-coefficients-section .badge-highlight {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(44, 41, 111, 0.3);
}

/* Statistics Cards - Colorful & Modern */
.stats-card {
    background: white;
    padding: 28px 24px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    z-index: 1;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.stats-card-blue {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.stats-card-blue::before {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
}

.stats-card-green {
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
}

.stats-card-green::before {
    background: linear-gradient(135deg, #10B981, #047857);
}

.stats-card-orange {
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

.stats-card-orange::before {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.stats-card-red {
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.stats-card-red::before {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.stats-value {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1e293b, #374151);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.stats-card-blue .stats-value {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-card-green .stats-value {
    background: linear-gradient(135deg, #10B981, #047857);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-card-orange .stats-value {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-card-red .stats-value {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    line-height: 1.5;
}

.stats-label span {
    color: #1e293b;
    font-weight: 800;
    display: block;
    margin-top: 4px;
}

/* Table Container - Colorful & Modern */
.table-responsive {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    margin: 40px 0;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 10px;
}

.lgs-coefficients-table {
    margin-bottom: 0;
    border: none;
}

/* Table Header - Colorful */
.lgs-coefficients-table-header {
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    color: white;
    position: relative;
}

.lgs-coefficients-table-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b, #ef4444);
}

.table-header-cell {
    padding: 18px 15px;
    font-weight: 700;
    text-align: center;
    font-size: 14px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-header-cell:first-child {
    text-align: left;
}

.table-header-highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    font-weight: 800;
    position: relative;
}

/* Table Body - Colorful Design */
.table-row-highlight {
    background: white;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
}

.table-row-highlight:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.table-row-highlight:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.table-subject-cell {
    padding: 18px 25px;
    font-weight: 800;
    background: #e2e8f0;
    color: white;
    border: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: relative;
}

.table-subject-cell::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
}

.table-data-cell {
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    border: none;
}

.table-data-cell:hover {
    background: rgba(59, 130, 246, 0.05);
    color: #1e40af;
    font-weight: 700;
}

.table-current-year {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 800;
    font-size: 15px;
}

.table-average {
    color: #64748b;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    font-weight: 500;
}

/* Analysis Cards - Colorful & Modern */
.analysis-card {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border: 1px solid #e2e8f0;
    border-left: 5px solid #3b82f6;
    transition: all 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    border-left-width: 8px;
}

.analysis-card-title {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.analysis-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.analysis-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    transition: all 0.2s ease;
}

.analysis-item:hover {
    color: #1e40af;
    padding-left: 8px;
    font-weight: 600;
}

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

.info-card {
    background: linear-gradient(135deg, #10b981, #047857);
    padding: 30px;
    border-radius: 16px;
    color: white;
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.4);
}

.info-card-title {
    margin-bottom: 24px;
    font-size: 1.3rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.info-list {
    list-style: none;
    padding: 0;
    line-height: 1.6;
    margin: 0;
}

.info-item {
    padding: 10px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.info-item:hover {
    padding-left: 8px;
    opacity: 0.9;
}

.info-item .fas {
    color: rgba(255,255,255,0.8);
    margin-right: 10px;
    font-size: 14px;
}

/* ==============================================
   LGS BOOKLETS SECTION STYLES
   ============================================== */

/* Section Styling */
.lgs-booklets-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.booklets-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.02) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.02) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    opacity: 0.3;
    z-index: 1;
}

.booklets-container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.booklets-badge {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.booklets-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.booklets-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Notice Container */
.booklets-notice {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    color: #000000;
    font-size: 16px;
    margin-bottom: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booklets-notice-header {
    margin-bottom: 30px;
}

.booklets-notice-title {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 700;
}

.booklets-icon-pdf {
    color: #3B82F6;
}

.booklets-notice-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

/* Booklet Cards */
.booklet-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.booklet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.booklet-card-red {
    /* specific red variant styling can go here */
}

.booklet-card-green {
    /* specific green variant styling can go here */
}

/* Booklet Icons */
.booklet-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.booklet-icon-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.3);
}

.booklet-icon-green {
    background: linear-gradient(135deg, #10B981, #047857);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
}

/* Booklet Content */
.booklet-title {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.booklet-description {
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

.booklet-info {
    font-size: 14px;
    opacity: 0.8;
}

/* Booklet Buttons */
.booklet-btn {
    border: none;
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    color: white;
}

.booklet-btn-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.booklet-btn-red:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
    color: white;
    text-decoration: none;
}

.booklet-btn-green {
    background: linear-gradient(135deg, #10B981, #047857);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.booklet-btn-green:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

/* Booklet Accent Bar */
.booklet-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.booklet-accent-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.booklet-accent-green {
    background: linear-gradient(135deg, #10B981, #047857);
}

/* Footer */
.booklets-notice-footer {
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.booklets-security-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 15px 25px;
    border-radius: 15px;
    border-left: 4px solid #3B82F6;
}

.booklets-security-icon {
    color: #3B82F6;
    font-size: 1.2rem;
}

.booklets-security-text {
    color: #1e40af;
    font-weight: 600;
    font-size: 15px;
}

/* Info Boxes */
.booklets-info-box {
    background: rgba(255,255,255,0.15);
    padding: 35px;
    border-radius: 20px;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.booklets-info-box:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.25);
}

.booklets-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.booklets-info-icon-blue {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.booklets-info-icon-green {
    background: linear-gradient(135deg, #10B981, #047857);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
}

.booklets-info-icon-orange {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
}

.booklets-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.booklets-info-text {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* ===== LGS RESULT CARD STYLES ===== */

/* Modern LGS Result Card */
.lgs-result-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    color: white;
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpFadeIn 0.6s ease-out forwards;
}

.lgs-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.1) 100%);
    border-radius: 20px;
}

.lgs-result-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.lgs-result-card-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lgs-result-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.lgs-result-card-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.lgs-result-card-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.lgs-result-success-message {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    backdrop-filter: blur(10px);
}

.lgs-result-success-message .success-emoji {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.lgs-result-success-message .success-text {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 600;
}

.lgs-result-action-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    margin-top: 1rem;
}

.lgs-result-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
    color: white;
    text-decoration: none;
}

.lgs-result-action-btn:active {
    transform: translateY(0);
}

.lgs-result-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 20px;
}

.lgs-result-decorative-elements::before,
.lgs-result-decorative-elements::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.lgs-result-decorative-elements::before {
    top: -50px;
    right: -50px;
    animation: float 3s ease-in-out infinite;
}

.lgs-result-decorative-elements::after {
    bottom: -50px;
    left: -50px;
    animation: float 3s ease-in-out infinite reverse;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hidden state */
.result-hidden {
    display: none !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lgs-result-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .lgs-result-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .lgs-result-card-title {
        font-size: 1.5rem;
    }
    
    .lgs-result-action-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ==============================================
   İHLAS KOLEJİ FEN LİSESİ TANITIM SECTİON
   ============================================== */

.fen-lisesi-tanitim-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.fen-lisesi-tanitim-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.tanitim-container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: justify;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.tanitim-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tanitim-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.tanitim-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
    border-radius: 20px 20px 0 0;
}

.tanitim-box-blue::before {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
}

.tanitim-box-green::before {
    background: linear-gradient(135deg, #10B981, #047857);
}

.tanitim-box-orange::before {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.tanitim-box-purple::before {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.tanitim-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.tanitim-box-blue .tanitim-icon {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
}

.tanitim-box-green .tanitim-icon {
    background: linear-gradient(135deg, #10B981, #047857);
}

.tanitim-box-orange .tanitim-icon {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.tanitim-box-purple .tanitim-icon {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.tanitim-box h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.tanitim-box p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.kampus-olanaklar {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 25px;
    padding: 40px;
    color: white;
    text-align: center;
}

.olanaklar-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.olanaklar-title i {
    color: #10B981;
    margin-right: 10px;
}

.olanaklar-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 768px) {
    .fen-lisesi-tanitim-section {
        padding: 60px 0;
    }
    
    .tanitim-container {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .intro-text {
        font-size: 1rem;
        padding: 20px;
    }
    
    .tanitim-box {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .kampus-olanaklar {
        padding: 30px 20px;
    }
    
    .olanaklar-title {
        font-size: 1.5rem;
    }
    
    .olanaklar-text {
        font-size: 1rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN FOR LGS CALCULATOR
======================================== */

.submit-btn {
    width: 100%;
    min-height: 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    padding: 15px 25px;
    margin: 20px 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-subject-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px;
    border-radius: 12px 12px 0 0;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-subject-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mobile-subject-header .badge {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Mobil Input Stili */
.mobile-input {
    font-size: 18px !important;
    padding: 12px 15px !important;
    border-radius: 8px !important;
    border: 2px solid #e9ecef !important;
    background: #fff !important;
    text-align: center;
    font-weight: 600;
    color: #495057;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.mobile-input::-webkit-outer-spin-button,
.mobile-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mobile-input:focus {
    outline: none !important;
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
    background: #f8f9ff !important;
}

.mobile-input:hover {
    border-color: #80bdff !important;
}

.mobile-net-result {
    font-size: 16px !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #e3f2fd 0%, #f1f8e9 100%) !important;
    border: 2px solid #28a745 !important;
    color: #155724 !important;
    font-weight: 700;
    text-align: center;
}

/* Mobil Hesaplama Butonu */
.mobile-calculate-btn {
    width: 100% !important;
    min-height: 55px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    padding: 15px 25px !important;
    margin: 20px 0 !important;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-calculate-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4) !important;
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%) !important;
}

/* Mobil Canlı Hesaplama */
.mobile-live-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.mobile-stat-compact {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-stat-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.mobile-stat-icon {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.mobile-stat-name {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-stat-net {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Mobil Toplam Kartları */
.mobile-total-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 10px !important;
    padding: 15px !important;
    text-align: center !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.mobile-total-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
}

.total-score-highlight {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%) !important;
    border: 2px solid #28a745 !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2) !important;
}

.total-score-highlight .total-score-value {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #155724 !important;
}

/* Mobil Responsive Düzenlemeler */
@media (max-width: 992px) {
    .d-lg-none {
        display: block !important;
    }
    
    .d-none.d-lg-block {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .form-container-enhanced {
        margin: 15px;
        border-radius: 15px;
    }
    
    .form-header-enhanced {
        padding: 20px 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .form-title-enhanced {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .form-content {
        padding: 20px 15px;
    }
    
    .application-header {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .form-section-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
        padding: 10px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 8px;
        border-left: 4px solid var(--primary-color);
    }
}

@media (max-width: 576px) {
    .mobile-subject-header h5 {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .mobile-input {
        font-size: 16px !important;
        padding: 10px 12px !important;
    }
    
    .mobile-calculate-btn {
        font-size: 16px !important;
        min-height: 50px !important;
        padding: 12px 20px !important;
    }
}

/* Touch optimizasyonları */
@media (pointer: coarse) {
    .mobile-input,
    .mobile-calculate-btn,
    .mobile-stat-compact {
        min-height: 44px;
    }
    
    .mobile-calculate-btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 123, 255, 0.3);
    }
}

/* ========================================
   RESPONSIVE DESIGN IMPROVEMENTS
======================================== */

@media (max-width: 768px) {
    .form-container-enhanced {
        margin: 15px;
        border-radius: 15px;
    }
    
    .form-header-enhanced {
        padding: 20px 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .form-title-enhanced {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .form-content {
        padding: 20px 15px;
    }
    
    .application-header {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .form-section-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
        padding: 10px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 8px;
        border-left: 4px solid var(--primary-color);
    }
}

@media (max-width: 576px) {
    .form-control {
        font-size: 16px !important;
        padding: 10px 12px !important;
    }
    
    .submit-btn {
        font-size: 16px !important;
        min-height: 50px !important;
        padding: 12px 20px !important;
    }
}

.div-form-label {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}