/* Genel CSS Değişkenleri */
:root {
  --color-primary: #A4C63B;         /* Voltmeta yeşili */
  --color-primary-dark: #7A9F2D;    /* Koyu yeşil */
  --color-accent: #244034;         /* Derin yeşil ton (gölgelendirme için) */
  --color-light: #f7f7f7;           /* Arka planlarda ferahlık için */
  --color-dark: #333333;           /* Footer ve başlıklarda */

  --color-text: #222222;
  --color-muted: #999999;

  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Raleway', sans-serif;
}

/* Genel Stiller */
body {
  font-family: var(--font-secondary);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-nav .nav-link, .btn-contact, .footer-title {
  font-family: var(--font-primary);
  letter-spacing: -0.02em;
}

/* Header Stili */
.header {
  transition: all 0.4s ease;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1050;
}

.header.scrolled {
  padding: 5px 0;
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar {
  padding: 12px 0;
  transition: all 0.3s ease;
}

.logo {
  max-height: 38px;
  transition: all 0.3s ease;
}

.scrolled .logo {
  max-height: 32px;
}

.brand-text {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-dark);
  margin-left: 5px;
}

.text-primary {
  color: var(--color-primary) !important;
}

.navbar-nav {
  gap: 5px;
}

.navbar-nav .nav-link {
  padding: 0.6rem 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-dark);
  transition: all 0.3s ease;
  position: relative;
  border-radius: 6px;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary);
  background-color: rgba(164, 198, 59, 0.08);
}

.navbar-nav .nav-link.active {
  color: var(--color-primary);
  background-color: rgba(164, 198, 59, 0.12);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  opacity: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 30px;
  opacity: 1;
}

/* İletişim butonu için çizgiyi kaldır */
.navbar-nav .nav-item:last-child .nav-link::after,
.navbar-nav .nav-item:last-child .nav-link:hover::after,
.navbar-nav .nav-item:last-child .nav-link.active::after {
  display: none;
}

/* İletişim Butonu Stili */
.btn-contact {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 10px rgba(164, 198, 59, 0.3);
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.btn-contact:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  box-shadow: 0 6px 15px rgba(164, 198, 59, 0.4);
  transform: translateY(-2px);
}

.btn-contact-text {
  font-weight: 500;
}

.btn-contact i {
  transition: transform 0.3s ease;
}

.btn-contact:hover i {
  transform: translateX(3px);
}

/* Header Utilities */
.header-utilities {
  display: flex;
  align-items: center;
  background-color: rgba(247, 247, 247, 0.5);
  padding: 4px 12px;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Sosyal Medya İkonları - Mini */
.social-links-mini {
  display: flex;
  gap: 10px;
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.social-link-mini {
  color: var(--color-dark);
  font-size: 15px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light);
  border-radius: 50%;
  transition: all 0.2s ease;
  text-decoration: none !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.social-link-mini:hover {
  background-color: var(--color-primary);
  color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Dil Seçimi */
.language-selector {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}

.language-option {
  color: var(--color-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 3px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.language-option:hover {
  color: var(--color-primary);
  background-color: rgba(164, 198, 59, 0.08);
}

.language-option.active {
  color: var(--color-primary);
  font-weight: 600;
  background-color: rgba(164, 198, 59, 0.12);
}

.language-divider {
  color: var(--color-muted);
  opacity: 0.3;
  margin: 0 2px;
}

.navbar-toggler {
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  z-index: 1100;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler i {
  font-size: 1.2rem;
}

/* Mobil Kanvas Menü */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-canvas-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 80%;
  max-width: 320px;
  background-color: white;
  z-index: 1999;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-canvas-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-logo {
  max-height: 30px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--color-dark);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
}

.mobile-nav {
  padding: 20px 0;
  flex: 1;
}

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

.mobile-nav-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link {
  display: block;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-primary);
  background-color: rgba(164, 198, 59, 0.08);
  padding-left: 30px;
}

.mobile-contact-btn {
  margin: 20px 25px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white !important;
  text-align: center;
  padding: 12px 20px !important;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(164, 198, 59, 0.3);
}

.mobile-contact-btn:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: white !important;
  padding-left: 20px !important;
  box-shadow: 0 6px 15px rgba(164, 198, 59, 0.4);
}

.mobile-menu-footer {
  padding: 20px 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

/* Mobil Dil Seçimi */
.mobile-language-selector {
  margin-bottom: 15px;
}

.language-label {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.language-options {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.mobile-language-selector .language-option {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  background-color: var(--color-light);
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
}

.mobile-language-selector .language-option:hover {
  background-color: rgba(164, 198, 59, 0.12);
  color: var(--color-primary);
}

.mobile-language-selector .language-option.active {
  background-color: var(--color-primary);
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-light);
  color: var(--color-dark);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--color-primary);
  color: white;
}

.copyright {
  font-size: 12px;
  color: var(--color-muted);
}

/* Footer Stili */
.footer {
  background-color: var(--color-dark);
  color: #fff;
  padding: 70px 0 30px;
  margin-top: 50px;
}

.footer-logo {
  max-height: 40px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-top: 15px;
  line-height: 1.7;
  font-family: var(--font-secondary);
  letter-spacing: 0.01em;
}

.footer-newsletter {
  margin-top: 25px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
}

.footer-newsletter h5 {
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 15px;
}

.footer-subscribe-form {
  display: flex;
  position: relative;
}

.footer-input {
  width: 100%;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 0 50px 0 20px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.15);
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-subscribe-btn:hover {
  background-color: var(--color-primary-dark);
  transform: scale(1.05);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
}

.footer-links-wrapper {
  padding-left: 15px;
}

.footer-title {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 16px;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color-primary);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
  font-weight: 400;
  font-family: var(--font-secondary);
  letter-spacing: 0.02em;
}

.footer-links a:before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-primary);
  font-size: 12px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 20px;
}

.footer-links a:hover:before {
  left: 5px;
}

.footer-contact-wrapper {
  padding-left: 10px;
}

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

.footer-contact-list li {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.footer-contact-list li:hover .footer-contact-icon {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-contact-text {
  flex: 1;
}

.footer-contact-text p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  font-family: var(--font-secondary);
  letter-spacing: 0.01em;
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  font-family: var(--font-secondary);
  letter-spacing: 0.01em;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 30px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-bottom-links li {
  position: relative;
}

.footer-bottom-links li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
}

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

.footer-content {
  margin-bottom: 20px;
}

/* Responsive Ayarları */
@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }
  
  .navbar {
    padding: 8px 0;
  }
  
  .header {
    padding: 0;
  }
  
  /* Mobil modda logonun solda kalması */
  .navbar-brand {
    position: static;
    transform: none;
  }
  
  .footer {
    padding: 50px 0 30px;
  }
  
  .footer-title {
    margin-top: 20px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .footer-bottom-links li:not(:last-child)::after {
    display: none;
  }
}

/* Referanslar ve Destekçiler Bölümü */
.partners-section {
    padding: 60px 0;
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(164, 198, 59, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.section-subtitle {
    display: inline-block;
    background-color: rgba(164, 198, 59, 0.2);
    color: var(--color-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-center {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.section-title-divider {
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 0 auto 20px;
}

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

.partners-slider-wrapper {
    position: relative;
    padding: 20px 0;
}

.partners-slider-wrapper::before,
.partners-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.partners-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-light), rgba(247, 247, 247, 0));
}

.partners-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-light), rgba(247, 247, 247, 0));
}

.partners-slider {
    overflow: hidden;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    transform: translateY(0);
}

.partner-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

@media (max-width: 767.98px) {
    .partners-section {
        padding: 50px 0;
    }
    
    .section-title-center {
        font-size: 28px;
    }
    
    .partner-item {
        height: 80px;
    }
    
    .partner-logo {
        max-height: 60px;
    }
}

@media (max-width: 575.98px) {
    .section-title-center {
        font-size: 24px;
    }
    
    .partner-item {
        height: 70px;
        padding: 8px 15px;
    }
    
    .partner-logo {
        max-height: 50px;
    }
}

/* Yatırımcı Bilgi Formu Bölümü */
.investor-contact-form-section {
    padding: 90px 0;
    background: #fff;
    position: relative;
}

.investor-form-wrapper {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.investor-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.investor-form-image {
    position: relative;
    height: 100%;
}

.investor-form-image img {
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    filter: brightness(1.05);
}

.investor-form-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 64, 52, 0.1) 0%, rgba(164, 198, 59, 0.2) 100%);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.investor-form-content {
    padding: 50px;
    position: relative;
}

.form-title {
    color: #244034;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #A4C63B, #7A9F2D);
    border-radius: 3px;
}

.form-description {
    color: #666;
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.7;
}

.investor-form {
    position: relative;
}

.investor-form .form-group {
    margin-bottom: 25px;
}

.investor-form label {
    display: block;
    margin-bottom: 10px;
    color: #444;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.investor-form label i {
    color: #A4C63B;
    margin-right: 8px;
    font-size: 16px;
}

.investor-form .form-control {
    height: 52px;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    padding: 0 20px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.investor-form .form-control:focus {
    border-color: #A4C63B;
    box-shadow: 0 0 0 4px rgba(164, 198, 59, 0.15);
    background-color: #fff;
    outline: none;
}

.investor-form .form-control:focus + label {
    color: #A4C63B;
}

.form-check-label {
    font-size: 14px;
    color: #666;
    padding-left: 5px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0.2em;
    border: 1.5px solid #A4C63B;
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: #A4C63B;
    border-color: #A4C63B;
}

.form-check-label a {
    color: #A4C63B;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.form-check-label a:hover {
    color: #7A9F2D;
    text-decoration: underline;
}

.investor-form-btn {
    background: linear-gradient(135deg, #A4C63B 0%, #7A9F2D 100%);
    border: none;
    border-radius: 8px;
    height: 56px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0 30px;
    transition: all 0.3s ease;
    width: 100%;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(122, 159, 45, 0.3);
    position: relative;
    overflow: hidden;
}

.investor-form-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: all 0.5s ease;
}

.investor-form-btn:hover {
    background: linear-gradient(135deg, #7A9F2D 0%, #A4C63B 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(122, 159, 45, 0.4);
}

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

.investor-form-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(122, 159, 45, 0.3);
}

.investor-form-btn i {
    font-size: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

.investor-form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(164, 198, 59, 0.15) 0%, rgba(164, 198, 59, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(164, 198, 59, 0.25);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(164, 198, 59, 0.25);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(164, 198, 59, 0.35);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(164, 198, 59, 0.25);
    }
}

.success-icon i {
    color: #A4C63B;
    font-size: 45px;
}

.investor-form-success h4 {
    color: #244034;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.investor-form-success p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .investor-form-wrapper {
        max-width: 650px;
        margin: 0 auto;
    }
    
    .investor-form-image {
        height: 350px;
    }
    
    .investor-form-image img,
    .investor-form-image::after {
        border-radius: 16px 16px 0 0;
    }
    
    .investor-form-content {
        padding: 40px 35px;
    }
}

@media (max-width: 767.98px) {
    .investor-contact-form-section {
        padding: 70px 0;
    }
    
    .investor-form-image {
        height: 280px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .investor-form-content {
        padding: 35px 30px;
    }
}

@media (max-width: 575.98px) {
    .investor-contact-form-section {
        padding: 60px 0;
    }
    
    .investor-form-image {
        height: 220px;
    }
    
    .investor-form-content {
        padding: 30px 25px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .investor-form .form-control {
        height: 48px;
    }
    
    .investor-form-btn {
        height: 52px;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
    }
    
    .success-icon i {
        font-size: 40px;
    }
}

/* Blog Bölümü */
.blog-section {
    padding: 80px 0;
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(164, 198, 59, 0.05);
    z-index: 1;
}

.blog-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(36, 64, 52, 0.05);
    z-index: 1;
}

.blog-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-primary);
    padding: 6px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(164, 198, 59, 0.3);
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--color-muted);
    font-size: 13px;
}

.blog-meta i {
    color: var(--color-primary);
    margin-right: 5px;
}

.blog-title {
    color: var(--color-accent);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--color-primary);
}

.blog-excerpt {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.blog-read-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.blog-read-more:hover {
    color: var(--color-primary-dark);
}

.blog-read-more:hover::after {
    width: 100%;
}

.blog-read-more i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(164, 198, 59, 0.3);
    border: none;
}

.blog-all-btn:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(164, 198, 59, 0.4);
}

.blog-all-btn i {
    transition: transform 0.3s ease;
}

.blog-all-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-title {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-card-image img {
        height: 200px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .blog-card-image img {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 15px;
    }
    
    .blog-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .blog-excerpt {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

/* Çerez Bildirimi Stilleri */
.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 380px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 25px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
    border-left: 4px solid var(--color-primary);
    max-width: calc(100% - 60px);
}

.cookie-consent.active {
    transform: translateY(0);
    opacity: 1;
}

.cookie-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-size: 18px;
}

.cookie-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

.cookie-text {
    font-size: 14px;
    color: var(--color-muted);
    margin-bottom: 18px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.accept-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(164, 198, 59, 0.2);
}

.accept-btn:hover {
    box-shadow: 0 6px 15px rgba(164, 198, 59, 0.3);
    transform: translateY(-2px);
}

.reject-btn {
    background-color: #f5f5f5;
    color: var(--color-dark);
}

.reject-btn:hover {
    background-color: #eeeeee;
}

.cookie-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-dark);
    text-decoration: none;
    padding: 10px 5px;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

@media (max-width: 575px) {
    .cookie-consent {
        left: 15px;
        bottom: 15px;
        width: calc(100% - 30px);
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-btn, .cookie-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Yukarı Çık Butonu ve Hızlı İletişim Stilleri */
.quick-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 990;
}

.back-to-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(164, 198, 59, 0.35);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(164, 198, 59, 0.5);
}

.contact-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(36, 64, 52, 0.35);
    transition: all 0.3s ease;
    position: relative;
}

.contact-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(36, 64, 52, 0.5);
}

.contact-options {
    position: absolute;
    bottom: 55px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.contact-toggle.active .contact-options {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-option span {
    margin-left: 8px;
}

.contact-option.phone {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
}

.contact-option.email {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
}

.contact-option.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-option:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .quick-actions {
        bottom: 20px;
        right: 20px;
    }
}

/* Loader Ekranı Stilleri */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

/* Yeniden yapılandırılmış batarya loader */
.voltage-loader {
    position: relative;
    width: 100px;
    height: 50px;
    margin: 0 auto 20px;
}

.battery-container {
    width: 80px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.battery-body {
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-accent);
    border-radius: 5px;
    position: relative;
}

.battery-body::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 7px;
    height: 16px;
    background-color: var(--color-accent);
    border-radius: 0 3px 3px 0;
}

.voltage-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-primary);
    font-size: 14px;
    z-index: 2;
    animation: batteryPulse 1.5s infinite;
}

@keyframes batteryPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.9);
    }
}

.battery-level {
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
    width: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 2px;
    animation: charging 2s forwards;
}

@keyframes charging {
    0% {
        width: 0;
    }
    100% {
        width: calc(100% - 10px);
    }
}

.loader-text {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

/* About Highlight */
.about-highlight {
    padding: 80px 0;
    position: relative;
    background-color: var(--color-light);
}

.about-highlight-content {
    padding-right: 30px;
}

.about-highlight-image {
    position: relative;
}

.about-highlight-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-primary);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 24px;
    margin-right: 15px;
}

.badge-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.badge-title {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

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

.section-description {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-text);
}

.section-text {
    color: var(--color-muted);
    margin-bottom: 30px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-btn:hover {
    background-color: var(--color-primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Video Showcase Section */
.video-showcase-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.video-section-bg {
    position: relative;
    background: linear-gradient(135deg, rgba(122, 159, 45, 0.95) 0%, rgba(36, 64, 52, 0.98) 100%);
    color: white;
    padding: 80px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://image.pixellab.com.tr/via/1600/900');
    background-position: center;
    background-size: cover;
    opacity: 0.08;
    z-index: -1;
}

.section-title-center {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.section-subtitle {
    display: inline-block;
    background-color: rgba(164, 198, 59, 0.2);
    color: var(--color-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-section-bg .section-subtitle {
    background-color: rgba(36, 64, 52, 0.9); /* Daha koyu yeşil arka plan */
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 18px;
    font-weight: 700;
    font-size: 15px;
}

.section-title-divider {
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 0 auto 20px;
}

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

.video-section-bg .section-title-center {
    color: white;
}

.video-section-bg .section-description-center {
    color: rgba(255, 255, 255, 0.9);
}

.video-showcase-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.video-player {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
    background-color: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.video-overlay:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(164, 198, 59, 0.5);
    z-index: 3;
    transition: all 0.3s ease;
}

.play-button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid rgba(164, 198, 59, 0.3);
    animation: pulse 2s infinite;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
    background-color: var(--color-primary-dark);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.video-container.active {
    opacity: 1;
    visibility: visible;
    z-index: 3;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.video-features {
    margin-top: 30px;
}

.video-feature-item {
    background-color: white;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.video-feature-item:hover {
    background-color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(164, 198, 59, 0.2);
    color: var(--color-primary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.video-feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.video-feature-item p {
    color: var(--color-muted);
    font-size: 14px;
    margin-bottom: 0;
}

.video-more-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-accent);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(36, 64, 52, 0.2);
}

.video-more-btn:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(164, 198, 59, 0.3);
}

@media (max-width: 768px) {
    .section-title-center {
        font-size: 32px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .video-showcase-section {
        padding: 60px 0;
    }
    
    .video-section-bg {
        padding: 60px 0;
    }
}

/* Teknolojilerimiz */
.technologies-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
} 