/* Kurumsal Dil Eğitimi Sayfası Özel CSS */

:root {
  --primary-color: #081C9E;
  --primary-light: #375AF8;
  --primary-lighter: #C7D9FD;
  --primary-lightest: #E1EAFE;
  --secondary-color: #00D18C;
  --secondary-dark: #00A672;
  --dark-color: #00124F;
  --gray-color: #8D93A5;
  --light-gray: #F4F7FF;
  --white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, #081C9E 0%, #375AF8 100%);
  --gradient-secondary: linear-gradient(135deg, #00D18C 0%, #00A672 100%);
  --shadow-sm: 0 2px 8px rgba(8, 28, 158, 0.05);
  --shadow-md: 0 4px 16px rgba(8, 28, 158, 0.1);
  --shadow-lg: 0 6px 24px rgba(8, 28, 158, 0.15);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --transition: all 0.3s ease;
}

/* General Styles */
.kurumsal-page {
  overflow-x: hidden;
  background-color: #ffffff;
}

.kurumsal-page section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Hero Section */
.kurumsal-header {
  background: linear-gradient(180deg, rgba(38,59,178,1) 0%, rgba(106,123,206,1) 60%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.kurumsal-hero {
  padding: 80px 0 180px;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, #E1EAFE 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 500px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--border-radius-md);
  padding: 16px;
  transition: var(--transition);
}

.hero-feature:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.feature-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.4;
}

.hero-cta {
  display: flex;
  gap: 16px;
}

.btn-demo {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-secondary);
  color: var(--dark-color);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  font-size: 16px;
}

.btn-demo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--dark-color);
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 209, 140, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 209, 140, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 209, 140, 0);
  }
}

.hero-image {
  position: relative;
  z-index: 1;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.floating-element {
  position: absolute;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.floating-badge {
  bottom: 30px;
  left: -20px;
}

.floating-card {
  top: 30px;
  right: -20px;
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
}

.badge-icon {
  font-size: 18px;
  color: var(--secondary-color);
}

.card-content {
  background-color: var(--white);
  padding: 16px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  min-width: 200px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.card-stats {
  display: flex;
  justify-content: space-between;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 12px;
  color: var(--gray-color);
}

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

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

/* Logos Section */
.logos-section {
  padding: 60px 0;
}

.logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.logo-item {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Benefits Section */
.benefits-section {
  background-color: var(--light-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  transition: var(--transition);
}

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

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

.benefit-card.highlight {
  border: 2px solid var(--primary-lighter);
}

.benefit-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.benefit-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.benefit-description {
  font-size: 14px;
  color: var(--gray-color);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Process Section */
.process-section {
  background-color: var(--white);
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 48px auto 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-lightest);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 48px;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}

.step-content {
  background-color: var(--white);
  padding: 16px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.step-description {
  font-size: 14px;
  color: var(--gray-color);
  margin-bottom: 0;
}

/* Platforms Section */
.platforms-section {
  background-color: var(--light-gray);
}

.platforms-image {
  position: relative;
  margin-bottom: 40px;
}

.platform-feature {
  position: absolute;
  background-color: var(--white);
  padding: 10px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  color: var(--dark-color);
  white-space: nowrap;
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-lightest);
  color: var(--primary-color);
  font-size: 16px;
}

.feature-1 {
  top: 30px;
  left: -20px;
}

.feature-2 {
  bottom: 60px;
  left: 40px;
}

.feature-3 {
  top: 50px;
  right: -20px;
}

.platforms-content {
  padding: 20px;
}

.platforms-description {
  font-size: 16px;
  color: var(--gray-color);
  margin-bottom: 32px;
  line-height: 1.6;
}

.platforms-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.platform-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--dark-color);
}

.platform-feature-item i {
  color: var(--secondary-color);
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-lightest);
  color: var(--primary-color);
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-learn-more:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Languages Section */
.languages-section {
  background-color: var(--white);
}

.languages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.language-card {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.language-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: var(--white);
}

.language-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.language-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.language-description {
  font-size: 14px;
  color: var(--gray-color);
  margin-bottom: 0;
}

.more-card {
  background-color: var(--primary-lightest);
}

.more-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.more-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.more-description {
  font-size: 14px;
  color: var(--dark-color);
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--light-gray);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  min-height: 300px;
}

.testimonial-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  max-width: 600px;
  position: absolute;
  top: 0;
  opacity: 0;
  transform: translateX(100px) scale(0.8);
  visibility: hidden;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  visibility: visible;
  z-index: 2;
}

.testimonial-card:nth-child(1) {
  transform: translateX(-100px) scale(0.8);
}

.testimonial-quote {
  font-size: 24px;
  color: var(--primary-lightest);
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 4px;
}

.author-position {
  font-size: 14px;
  color: var(--gray-color);
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 320px;
}

.control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  color: var(--dark-color);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.control-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.control-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-lightest);
  transition: var(--transition);
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: none;
  margin-bottom: 16px;
  border-radius: var(--border-radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark-color);
  background-color: var(--white);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-lightest);
}

.accordion-body {
  padding: 0 24px 24px;
  color: var(--gray-color);
  font-size: 15px;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-lightest);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-lighter);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-lighter);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.cta-container {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-content {
  padding: 48px;
}

.cta-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 16px;
}

.cta-text {
  font-size: 16px;
  color: var(--gray-color);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--dark-color);
}

.cta-benefit i {
  color: var(--secondary-color);
  font-size: 20px;
}

.cta-contact-info {
  padding-top: 24px;
  border-top: 1px solid var(--primary-lightest);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--dark-color);
  margin-bottom: 12px;
}

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

.contact-form {
  background-color: var(--primary-color);
  padding: 48px;
  height: 100%;
  color: var(--white);
}

.form-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
}

.form-control, .form-select {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
}

.form-control:focus, .form-select:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  box-shadow: none;
}

.form-floating > .form-control, .form-floating > .form-select {
  height: 58px;
}

.form-floating > label {
  padding: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  color: rgba(255, 255, 255, 0.9);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-check-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.form-check-label a {
  color: var(--secondary-color);
  text-decoration: none;
}

.form-check-input {
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-secondary);
  color: var(--dark-color);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  border: none;
  font-size: 16px;
  margin-top: 16px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 209, 140, 0.2);
}

/* Menu active state */
.menu ul li a.active {
  opacity: 1;
  color: var(--white);
  font-weight: 500;
}

.fomenubold li a.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-title {
    font-size: 30px;
  }
  
  .kurumsal-hero {
    padding: 60px 0 160px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-image {
    margin-top: 40px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .languages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .platforms-image {
    max-width: 80%;
    margin: 0 auto 40px;
  }
  
  .cta-content {
    padding: 32px;
  }
  
  .contact-form {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .kurumsal-page section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .kurumsal-hero {
    padding: 40px 0 140px;
  }
  
  .hero-title {
    font-size: 30px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    margin-bottom: 32px;
  }
  
  .languages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .platform-feature {
    position: static;
    margin-bottom: 16px;
    width: fit-content;
  }
  
  .platforms-features {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .testimonial-text {
    font-size: 14px;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .testimonial-controls {
    margin-top: 360px;
  }
}

@media (max-width: 576px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .languages-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content, .contact-form {
    padding: 24px;
  }
  
  .control-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .testimonial-controls {
    margin-top: 400px;
  }
}