/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.menu-items {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
}

.menu-item {
  position: relative;
}

.menu-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 25px 20px;
  display: block;
  transition: all 0.3s ease;
  font-size: 14px;
}

.menu-link:hover,
.menu-link.active {
  color: #e31e24;
}

/* Language Selector */
.menu-item.language .menu-link {
  background: #e31e24;
  color: white;
  border-radius: 4px;
  margin-left: 10px;
  padding: 8px 15px;
  height: auto;
}

.menu-item.language .menu-link:hover {
  background: #c41a1f;
  color: white;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 280px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 10px 0;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: #f8f8f8;
  color: #e31e24;
  border-left-color: #e31e24;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, #4f4f4e 0%, #3a3a3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("img/team-bg.jpg") center/cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(79, 79, 78, 0.8),
    rgba(229, 111, 21, 0.6)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 20px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Why Join Section */
.why-join-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: #4f4f4e;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-header .highlight {
  color: #e56f15;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  border-bottom-color: #e56f15;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e56f15, #d65d0d);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon i {
  font-size: 32px;
  color: white;
}

.benefit-card h3 {
  font-size: 22px;
  color: #4f4f4e;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #e56f15, #d65d0d);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 32px;
  color: #4f4f4e;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-header p {
  font-size: 16px;
  color: #666;
}

/* Form Styles */
.kariyer-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 16px;
  font-weight: 600;
  color: #4f4f4e;
  margin-bottom: 8px;
}

.required {
  color: #e31e24;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e56f15;
  background: white;
  box-shadow: 0 0 0 3px rgba(229, 111, 21, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* File Input Styling */
.file-input-wrapper {
  position: relative;
  overflow: hidden;
}

.file-input-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-input-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border: 2px dashed #e0e0e0;
  border-radius: 10px;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #666;
}

.file-input-label:hover,
.file-input-wrapper:hover .file-input-label {
  border-color: #e56f15;
  background: rgba(229, 111, 21, 0.05);
  color: #e56f15;
}

.file-input-label i {
  font-size: 20px;
}

/* Checkbox Styling */
.checkbox-group {
  margin: 20px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  background: #fafafa;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #e56f15;
  border-color: #e56f15;
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  opacity: 1;
}

/* Submit Button */
.form-submit {
  margin-top: 20px;
  text-align: center;
}

.submit-btn {
  background: linear-gradient(135deg, #e56f15, #d65d0d);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(229, 111, 21, 0.3);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn i {
  font-size: 16px;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #27ae60, #229954);
  color: white;
  border-radius: 15px;
  margin-top: 30px;
}

.success-icon {
  margin-bottom: 20px;
}

.success-icon i {
  font-size: 48px;
  color: white;
}

.success-message h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.success-message p {
  font-size: 16px;
  opacity: 0.95;
}

/* Footer Styles */
.site-footer {
  background-color: #1f1f1f;
  color: #a0a0a0;
  padding: 80px 0 0;
  font-size: 15px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-col ul a:hover,
.footer-col ul a:focus-visible {
  color: #e56f15;
  outline: none;
}

.footer-social {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #3a3a3a;
}

.footer-social a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  margin: 0 12px;
  color: #a0a0a0;
}

.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(45deg, #e56f15, #d65d0d);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: white;
  transform: scale(1.1);
  outline: none;
}

.footer-social a:hover::before {
  opacity: 1;
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-size: 13px;
}

.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  margin-left: 20px;
  transition: color 200ms ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: #e56f15;
  outline: none;
}

/* Animation Styles */
@media (prefers-reduced-motion: reduce) {
  .anim,
  .anim-item {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.anim {
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
}

.anim-item {
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
  opacity: 0;
}

.anim:not(.is-inview) {
  opacity: 0;
}

.anim[data-anim="fade-up"]:not(.is-inview),
.anim[data-anim="fade-up"] .anim-item {
  opacity: 0;
  transform: translateY(60px);
}

.anim[data-anim="fade-in"]:not(.is-inview) {
  opacity: 0;
  transform: none;
}

.anim.is-inview,
.anim.is-inview .anim-item {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(0deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 30px 25px;
  }

  .form-container {
    padding: 40px 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .form-header h2 {
    font-size: 28px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal-links a {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .why-join-section,
  .form-section {
    padding: 60px 0;
  }

  .form-container {
    padding: 30px 20px;
  }

  .benefit-card {
    padding: 25px 20px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon i {
    font-size: 24px;
  }

  .submit-btn {
    padding: 15px 30px;
    font-size: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Mobile Menu Styles */
.nav-menu.active {
  display: flex;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.nav-menu.active .menu-items {
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.nav-menu.active .menu-item {
  width: 100%;
  border-bottom: 1px solid #eee;
}

.nav-menu.active .menu-link {
  padding: 15px 20px;
}

.nav-menu.active .dropdown-menu {
  position: static;
  box-shadow: none;
  background: #f8f8f8;
  opacity: 1;
  visibility: visible;
  transform: none;
  border-radius: 0;
  margin-top: 0;
}

.nav-menu.active .dropdown-menu a {
  padding-left: 40px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }
}

/* ============== DİL SEÇİCİ STİLLERİ ============== */
.language-selector {
  position: relative;
}

.current-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e31e24;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 80px;
  justify-content: space-between;
}

.current-lang:hover {
  background: #c41a1f;
}

.flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.current-lang svg {
  transition: transform 0.3s ease;
}

.language-selector.active .current-lang svg {
  transform: rotate(180deg);
}

.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 8px 0;
  min-width: 180px;
  z-index: 1000;
  border: 1px solid #eee;
}

.language-selector:hover .lang-options,
.language-selector.active .lang-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.lang-option:hover {
  background: #f8f8f8;
  color: #e31e24;
  border-left-color: #e31e24;
}
