* {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Montserrat';
  font-size: 12px;
  overflow-x: hidden;
  background: #fff;
}

@media (max-width: 768px) {
  body {
    overflow-y: auto;
  }
}

ul {
  list-style: none;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: visible;
}

/* Navbar */
.navbar {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 120px;
  min-height: 120px;
  overflow: visible;
}

.navbar-logo {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: visible;
}

.navbar-logo {
  flex-shrink: 0;
}

.navbar-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
}

.navbar-logo a:hover {
  opacity: 0.8;
}

.logo-img {
  height: auto;
  width: auto;
  max-width: 600px;
  max-height: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.navbar-item {
  position: relative;
}

.navbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  white-space: nowrap;
  cursor: pointer;
}

.navbar-link:hover,
.navbar-link.active {
  color: #2ECC71;
}

.dropdown.open .navbar-link,
.dropdown.active .navbar-link {
  color: #2ECC71;
}

.dropdown-content a.active {
  color: #2ECC71;
  font-weight: 600;
}

.navbar-link i {
  font-size: 9px;
  margin-left: 4px;
  transition: transform 0.3s;
}

.dropdown.open .navbar-link i,
.dropdown.active .navbar-link i {
  transform: rotate(180deg);
}

/* Dropdown menü */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none !important;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 10px 0;
  z-index: 1001;
  animation: fadeInDown 0.3s ease;
}

.dropdown.open .dropdown-content {
  display: block !important;
}

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

.dropdown-content li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-content li a {
  display: block;
  padding: 12px 24px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.dropdown-content li a:hover {
  background: #f8f9fa;
  color: #d9534f;
  border-left-color: #d9534f;
  padding-left: 28px;
}

/* Bayilikler dropdown - çok sütunlu ve scrollable */
.dropdown.open .bayilikler-dropdown {
  min-width: 500px !important;
  max-width: 600px;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0;
  padding: 15px 0 !important;
}

.dropdown.open .bayilikler-dropdown li {
  width: 100%;
}

.dropdown.open .bayilikler-dropdown li:first-child {
  grid-column: 1 / -1;
  border-bottom: 1px solid #eee;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.dropdown.open .bayilikler-dropdown li:first-child a {
  font-weight: 600;
  color: #2ECC71;
  border-left-color: #2ECC71;
}

.dropdown.open .bayilikler-dropdown li a {
  padding: 10px 20px;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown.open .bayilikler-dropdown::-webkit-scrollbar {
  width: 6px;
}

.dropdown.open .bayilikler-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.dropdown.open .bayilikler-dropdown::-webkit-scrollbar-thumb {
  background: #2ECC71;
  border-radius: 3px;
}

.dropdown.open .bayilikler-dropdown::-webkit-scrollbar-thumb:hover {
  background: #27AE60;
}

/* İletişim bilgileri */
.navbar-contact {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
}

.contact-phone,
.contact-email {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
  color: #d9534f;
}

.contact-phone i,
.contact-email i {
  font-size: 15px;
  color: #d9534f;
}

.content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
  pointer-events: none;
}

.content > * {
  pointer-events: auto;
}

.title {
  flex: 0 0 100%;
  font-size: 200px;
  text-transform: uppercase;
  font-weight: 700;
  min-height: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
}

.tagline {
  flex: 1;
  font-size: 30px;
  color: #999;
}

.pages {
  flex: 0;
  letter-spacing: 5px;
  color: #999;
}

.pages span {
  font-size: 60px;
  color: #000;
  font-weight: 600;
}

.more {
  flex: 1;
}

.more a {
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  padding: 10px 30px;
  border-radius: 10px;
  display: inline-block;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.more a:hover {
  background: linear-gradient(135deg, #27AE60 0%, #16A085 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.desc {
  flex: 0 0 32%;
}

.desc p:nth-child(1) {
  font-size: 30px;
  margin-bottom: 20px;
}

.desc p:nth-child(2) {
  line-height: 2;
}

.desc span {
  color: #2ECC71;
}

.juice {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  pointer-events: none;
}

.juice img {
  animation: float 4s ease-in-out infinite, pulseOpacity 3s ease-in-out infinite;
  max-height: 600px;
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}

@keyframes pulseOpacity {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

#juice-image {
  display: block;
  width: auto;
  height: auto;
  max-height: 600px;
}

/* Logo için özel stil - hero bölümünde (ilk ürün görseli / logo) */
#juice-image {
  animation: float 4s ease-in-out infinite, pulseOpacity 3s ease-in-out infinite;
  max-height: 400px;
  max-width: 400px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  margin-top: 120px;
}

@keyframes float {
  0% {
    transform: translate(-50%, -46%);
  }
  50% {
    transform: translate(-50%, -54%);
  }
  100% {
    transform: translate(-50%, -46%);
  }
}

.leaves {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}

.leaves img {
  max-width: 100%;
  max-height: 100%;
}

.leaves .layer:nth-child(1) {
  top: -100px !important;
  left: -480px !important;
}

.leaves .layer:nth-child(2) {
  top: 10px !important;
  left: 160px !important;
}

.leaves .layer:nth-child(3) {
  top: -300px !important;
  left: 160px !important;
}

.leaves .layer:nth-child(4) {
  top: -10px !important;
  left: 320px !important;
}

.leaves .layer:nth-child(5) {
  top: 200px !important;
  left: -320px !important;
}

.arrows .prev {
  position: absolute;
  top: 50%;
  left: 100px;
}

.arrows .next {
  position: absolute;
  top: 50%;
  right: 100px;
}

@media (max-width: 768px) {
  .arrows .prev {
    position: static;
  }

  .arrows .next {
    position: static;
  }
}

.arrows button {
  border: 1px solid #999;
  background: transparent;
  padding: 20px;
  border-radius: 50%;
  outline: none;
}

.arrows button:hover {
  color: #fff;
  background: #000;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

/* Şirketimiz Hakkında Bölümü */
.about-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-text h3 span {
  color: #2ECC71;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hizmetlerimiz Bölümü */
.services-section {
  padding: 100px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.2);
  border-color: #2ECC71;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
}

.service-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Blog Bölümü */
.blog-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.blog-content {
  padding: 30px;
}

.blog-category {
  display: inline-block;
  background: #2ECC71;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.blog-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.blog-meta span {
  font-size: 13px;
  color: #999;
}

.blog-meta i {
  margin-right: 5px;
}

.read-more {
  color: #2ECC71;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}

.read-more:hover {
  color: #1ABC9C;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s;
}

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

/* İletişim Bilgileri Bölümü */
.contact-info-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  color: #fff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.contact-info-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.contact-info-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
}

.contact-info-card a {
  color: #2ECC71;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-info-card a:hover {
  color: #1ABC9C;
}

.contact-note {
  display: block;
  font-size: 13px;
  color: #666;
  font-style: italic;
  margin-top: 10px;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  margin-bottom: 15px;
  max-width: 200px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 14px;
  color: #2ECC71;
  font-weight: 500;
  margin-top: 5px;
  text-align: center;
}

.footer-description {
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
  margin-top: 15px;
  max-height: 80px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.footer-links a:hover {
  color: #2ECC71;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 12px;
  font-size: 13px;
  color: #ccc;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer-contact i {
  color: #2ECC71;
  margin-top: 3px;
  font-size: 16px;
}

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

.footer-contact a:hover {
  color: #2ECC71;
}

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

.footer-social {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 18px;
}

.footer-social-link:hover {
  background: #2ECC71;
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom p {
  font-size: 14px;
  color: #999;
}

.footer-bottom a {
  color: #2ECC71;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

.footer-bottom a:hover {
  color: #1ABC9C;
}

/* Sayfa Başlıkları ve İçerik */
.page-header {
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  color: #fff;
  padding: 80px 0 40px;
  margin-top: 120px;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-breadcrumb {
  font-size: 16px;
  opacity: 0.9;
}

.page-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.page-breadcrumb a:hover {
  opacity: 0.7;
}

.page-content {
  padding: 80px 0;
  background: #fff;
}

/* Hakkımızda Sayfası */
.about-page-content {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.about-page-text {
  flex: 1;
}

.about-page-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.about-page-text h3 {
  font-size: 28px;
  font-weight: 600;
  color: #2ECC71;
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-page-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-page-image {
  flex: 1;
  text-align: center;
}

.about-page-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
  margin-top: 60px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px;
}

.feature-item .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
}

.feature-item h4 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.feature-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Misyon Vizyon Sayfası */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.mission-vision-card {
  background: #f8f9fa;
  padding: 50px 40px;
  border-radius: 15px;
  text-align: center;
}

.mission-vision-card .card-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
}

.mission-vision-card h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.mission-vision-card > p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.mission-list {
  list-style: none;
  text-align: left;
}

.mission-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
  padding-left: 10px;
}

.mission-list i {
  color: #2ECC71;
  margin-right: 10px;
}

.mission-content {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.mission-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.mission-content h2:first-child {
  margin-top: 0;
}

.mission-content p {
  margin-bottom: 20px;
}

.mission-content ul {
  list-style: none;
  margin-bottom: 30px;
}

.mission-content li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.mission-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2ECC71;
  font-weight: bold;
}

.values-section {
  margin-top: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
}

.value-item i {
  font-size: 48px;
  color: #2ECC71;
  margin-bottom: 20px;
}

.value-item h4 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.value-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Firma Bilgileri Sayfası */
.company-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.info-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card .info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.info-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.info-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.info-card a {
  color: #2ECC71;
  text-decoration: none;
  transition: color 0.3s;
}

.info-card a:hover {
  color: #1ABC9C;
}

.company-description {
  margin-top: 60px;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 10px;
}

.company-description h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.company-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Firma Belgeleri Sayfası */
.documents-intro {
  text-align: center;
  margin-bottom: 50px;
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.document-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.document-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #2ECC71;
}

.document-card .document-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
}

.document-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.document-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.document-link {
  color: #2ECC71;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}

.document-link:hover {
  color: #1ABC9C;
}

.document-link i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.document-link:hover i {
  transform: translateX(5px);
}

.documents-note {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
}

.documents-note i {
  color: #2ECC71;
  margin-right: 10px;
}

/* Galeri Sayfası */
/* Yeni Galeri Tasarımı */
.gallery-section-new {
  padding: 80px 0;
  background: #fff;
}

.gallery-intro-new {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-intro-new h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.gallery-intro-new p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.gallery-empty-new {
  text-align: center;
  padding: 80px 20px;
  color: #999;
}

.gallery-empty-new i {
  font-size: 64px;
  margin-bottom: 20px;
  color: #ddd;
}

.gallery-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery-item-new {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #f8f9fa;
  aspect-ratio: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.gallery-item-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.9) 0%, rgba(26, 188, 156, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item-overlay i {
  color: #fff;
  font-size: 40px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item-new:hover .gallery-item-overlay i {
  transform: scale(1);
}

/* Yeni Lightbox */
.lightbox-new {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-new.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.lightbox-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 100px;
  z-index: 1;
}

.lightbox-image-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrapper img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: lightboxFadeInNew 0.4s ease;
}

@keyframes lightboxFadeInNew {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-footer {
  margin-top: 30px;
  text-align: center;
  color: #fff;
}

.lightbox-counter-new {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  font-weight: 500;
}

.lightbox-title-new {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
}

/* Lightbox Butonları */
.lightbox-btn-close,
.lightbox-btn-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100000;
  backdrop-filter: blur(10px);
  font-size: 20px;
}

.lightbox-btn-close:hover,
.lightbox-btn-nav:hover {
  background: rgba(46, 204, 113, 1);
  border-color: #2ECC71;
  transform: scale(1.1);
}

.lightbox-btn-close {
  top: 30px;
  right: 30px;
  background: rgba(220, 53, 69, 0.9);
  border-color: rgba(220, 53, 69, 0.8);
  font-size: 24px;
}

.lightbox-btn-close:hover {
  background: rgba(220, 53, 69, 1);
  border-color: #dc3545;
}

.lightbox-btn-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-btn-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .gallery-grid-new {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .lightbox-wrapper {
    padding: 40px 15px 80px;
  }
  
  .lightbox-btn-close {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .lightbox-btn-prev,
  .lightbox-btn-next {
    width: 45px;
    height: 45px;
    top: auto;
    bottom: 20px;
    transform: none;
  }
  
  .lightbox-btn-prev {
    left: 20px;
  }
  
  .lightbox-btn-next {
    right: 20px;
  }
  
  .lightbox-title-new {
    font-size: 16px;
  }
}

/* Galeri Bölümü */
.gallery-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.gallery-intro {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.gallery-intro p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.gallery-empty {
  text-align: center;
  padding: 80px 20px;
  color: #999;
}

.gallery-empty i {
  font-size: 64px;
  margin-bottom: 20px;
  color: #ddd;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  grid-auto-rows: 280px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  grid-row: span 1;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(46, 204, 113, 0.3);
}

.gallery-item-large {
  grid-row: span 2;
  grid-column: span 1;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.95) 0%, rgba(26, 188, 156, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay-content {
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay-content i {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
  animation: pulse 2s infinite;
}

.gallery-overlay-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 10000;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lightboxFadeIn 0.4s ease;
  z-index: 1;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-info {
  margin-top: 30px;
  text-align: center;
  color: #fff;
  max-width: 800px;
}

.lightbox-info h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.lightbox-info p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

.lightbox-counter {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(46, 204, 113, 1);
  border-color: #2ECC71;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5);
}

.lightbox-close {
  top: 30px;
  right: 30px;
  font-size: 24px;
  background: rgba(220, 53, 69, 0.9);
  border-color: rgba(220, 53, 69, 0.8);
}

.lightbox-close:hover {
  background: rgba(220, 53, 69, 1);
  border-color: #dc3545;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    grid-auto-rows: 150px;
  }
  
  .gallery-item-large,
  .gallery-item-wide,
  .gallery-item-tall {
    grid-row: span 1;
    grid-column: span 1;
  }
  
  .lightbox-container {
    padding: 20px;
  }
  
  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
    background: rgba(220, 53, 69, 0.95);
    border-color: rgba(220, 53, 69, 0.9);
    z-index: 10001;
  }
  
  .lightbox-close:hover {
    background: rgba(220, 53, 69, 1);
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 20px;
    transform: none;
    z-index: 10001;
  }
  
  .lightbox-prev {
    left: 20px;
  }
  
  .lightbox-next {
    right: 20px;
  }
  
  .lightbox-info h3 {
    font-size: 20px;
  }
  
  .lightbox-info p {
    font-size: 14px;
  }
}

/* Blog Bölümü - Ana Sayfa */
.blog-section {
  padding: 100px 0;
  background: #fff;
}

.blog-section .blog-category {
  display: inline-block !important;
  background: #2ECC71;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-footer {
  text-align: center;
  margin-top: 40px;
}

.section-footer .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
}

.section-footer .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
  background: linear-gradient(135deg, #27AE60 0%, #16A085 100%);
}

/* Firmamızdan Haberler Bölümü */
.haberler-section {
  padding: 100px 0;
  background: #f8f9fa;
}

/* Hukuki Sayfalar (KVKK, Gizlilik, Çerez) */
.legal-page {
  background: #fff;
  padding: 40px 40px 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.legal-page h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #2ECC71;
}

.legal-page p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.legal-page ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-page ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #555;
}

.legal-page a {
  color: #2ECC71;
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

/* Çerez Bildirimi ve Yönetimi */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 900px;
  width: 90%;
  background: rgba(26, 26, 26, 0.98);
  color: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 11000;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.cookie-text a {
  color: #2ECC71;
  text-decoration: none;
  font-weight: 600;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-btn.primary {
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  color: #fff;
}

.cookie-btn.primary:hover {
  background: linear-gradient(135deg, #27AE60 0%, #16A085 100%);
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.cookie-btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.cookie-btn.secondary:hover {
  background: #fff;
  color: #1a1a1a;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 11001;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.cookie-modal-content {
  position: relative;
  max-width: 600px;
  width: 90%;
  margin: 80px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.cookie-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.cookie-modal-close {
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.cookie-modal-body {
  padding: 20px 24px;
}

.cookie-option {
  padding: 15px 18px;
  border-radius: 8px;
  background: #f8f9fa;
  margin-bottom: 15px;
}

.cookie-option.disabled {
  opacity: 0.7;
}

.cookie-option-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cookie-option-title .badge {
  background: #2ECC71;
  color: #fff;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
}

.cookie-option p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.cookie-modal-footer {
  padding: 15px 24px 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 22px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.switch input:checked + .slider {
  background-color: #2ECC71;
}

.switch input:checked + .slider:before {
  transform: translateX(22px);
}

.cookie-manage-link {
  text-align: center;
  padding-top: 5px;
}

.cookie-manage-anchor {
  font-size: 13px;
  color: #2ECC71;
  text-decoration: none;
}

.cookie-manage-anchor:hover {
  text-decoration: underline;
}

/* Kariyer formu uyarıları */
.form-alert {
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-alert i {
  font-size: 18px;
}

.form-alert.success {
  background: #e6f9f0;
  border: 1px solid #b8f0d2;
  color: #1e7e34;
}

.form-alert.error {
  background: #fdecea;
  border: 1px solid #f5c2c0;
  color: #a71d2a;
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  
  .cookie-actions .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

.haberler-section .blog-category {
  display: inline-block !important;
  background: #2ECC71;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Haberler Sayfası */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.news-content {
  padding: 30px;
}

.news-category {
  display: inline-block;
  background: #2ECC71;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.news-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.news-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.news-meta span {
  font-size: 13px;
  color: #999;
}

.no-content {
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .page-header {
    padding: 60px 0 30px;
  }

  .page-header h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .page-breadcrumb {
    font-size: 13px;
    margin-top: 10px;
  }

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

  .section-header h2 {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .about-section,
  .services-section,
  .blog-section,
  .contact-info-section {
    padding: 60px 0;
  }

  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-text h3 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-card {
    padding: 30px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col {
    min-width: auto;
    text-align: center;
  }

  .footer-col h4 {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links li {
    display: inline-block;
    margin: 0 10px 8px 0;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-logo-img {
    height: 80px;
    max-width: 180px;
  }

  .page-header {
    margin-top: 90px;
    padding: 60px 0 30px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .page-content {
    padding: 40px 0;
  }

  .about-page-content {
    flex-direction: column;
    gap: 40px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .company-info-grid {
    grid-template-columns: 1fr;
  }

  .documents-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery grid zaten yukarıda responsive olarak tanımlı */

  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* Bayilikler Sayfası */
.bayilikler-intro {
  text-align: center;
  margin-bottom: 50px;
}

.bayilikler-intro h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.bayilikler-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.bayilikler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.bayilik-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.bayilik-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #2ECC71;
}

.bayilik-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.bayilik-image img {
  max-width: calc(100% - 0px);
  max-height: calc(100% - 0px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0;
  flex-shrink: 0;
}

.bayilik-content {
  padding: 30px;
}

.bayilik-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.bayilik-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.bayilik-link {
  color: #2ECC71;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bayilik-link:hover {
  color: #1ABC9C;
}

.bayilik-link i {
  transition: transform 0.3s;
}

.bayilik-link:hover i {
  transform: translateX(5px);
}

.bayilikler-cta {
  background: #f8f9fa;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
}

.bayilikler-cta h3 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.bayilikler-cta p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bayilikler-cta .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
}

.bayilikler-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

/* Bayilik Detay Sayfası */
.bayilik-detail {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.bayilik-detail-image {
  flex: 1;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  border-radius: 15px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bayilik-detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bayilik-detail-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.bayilik-detail-content {
  flex: 1;
}

.bayilik-detail-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.bayilik-subtitle {
  font-size: 18px;
  color: #2ECC71;
  font-weight: 600;
  margin-bottom: 30px;
}

.bayilik-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.bayilik-description p {
  margin-bottom: 15px;
}

.bayilik-features {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.bayilik-features h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.bayilik-features ul {
  list-style: none;
}

.bayilik-features li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
  padding-left: 10px;
}

.bayilik-features i {
  color: #2ECC71;
  margin-right: 10px;
}

.bayilik-contact {
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  padding: 40px;
  border-radius: 10px;
  color: #fff;
}

.bayilik-contact h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.bayilik-contact p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.95;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-btn {
  background: #fff;
  color: #2ECC71;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
}

.other-bayilikler {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid #f0f0f0;
}

.other-bayilikler h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .bayilik-detail {
    flex-direction: column;
    gap: 40px;
  }

  .bayilik-detail-image {
    min-height: 300px;
    padding: 30px;
    height: auto !important;
    max-height: none !important;
  }

  .bayilikler-grid {
    grid-template-columns: 1fr;
  }

  .bayilik-contact {
    padding: 30px 20px;
    box-sizing: border-box;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Kariyer Sayfası */
.career-intro {
  text-align: center;
  margin-bottom: 60px;
}

.career-intro h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.career-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.career-stats {
  margin-bottom: 60px;
}

.career-stats h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.stat-card {
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  opacity: 0.9;
}

.career-benefits {
  margin-bottom: 60px;
}

.career-benefits h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
  font-size: 48px;
  color: #2ECC71;
  margin-bottom: 20px;
}

.benefit-item h4 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.benefit-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

.career-form-section {
  background: #f8f9fa;
  padding: 50px;
  border-radius: 15px;
  margin-top: 60px;
}

.career-form-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
}

.form-intro {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.career-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-section {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.form-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #2ECC71;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}

.required {
  color: #d9534f;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2ECC71;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  margin: 0;
}

.date-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.date-inputs select {
  padding: 12px 10px;
}

.file-upload-area {
  border: 2px dashed #2ECC71;
  border-radius: 5px;
  padding: 30px;
  text-align: center;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s;
}

.file-upload-area:hover {
  background: #e8f8f5;
}

.file-upload-area input[type="file"] {
  display: none;
}

.file-upload-area p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

#photo-preview {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#photo-preview img {
  border-radius: 5px;
  border: 2px solid #2ECC71;
}

.education-item {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 5px;
}

.education-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.dil-item,
.tecrube-item,
.referans-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 15px;
  position: relative;
}

.dil-item {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: center;
}

.add-btn,
.remove-btn {
  background: #2ECC71;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.add-btn:hover {
  background: #1ABC9C;
  transform: translateY(-2px);
}

.remove-btn {
  background: #d9534f;
  padding: 8px 15px;
}

.remove-btn:hover {
  background: #c9302c;
}

.checkbox-group {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.submit-btn {
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  color: #fff;
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .career-form-section {
    padding: 30px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .date-inputs {
    grid-template-columns: 1fr;
  }

  .dil-item {
    grid-template-columns: 1fr;
  }
}

/* Form Başarı Mesajı */
.form-success-message {
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  color: #fff;
  padding: 100px 0;
  margin-top: 120px;
}

.success-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-content i {
  font-size: 80px;
  margin-bottom: 30px;
}

.success-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.success-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.95;
}

.back-btn {
  display: inline-block;
  background: #fff;
  color: #2ECC71;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
}

.back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Duyurular Sayfası */
.announcements-intro {
  text-align: center;
  margin-bottom: 50px;
}

.announcements-intro h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.announcements-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.category-filter {
  margin-bottom: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
}

.category-filter h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

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

.category-btn {
  padding: 10px 20px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: 2px solid #e0e0e0;
}

.category-btn:hover,
.category-btn.active {
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  color: #fff;
  border-color: #2ECC71;
}

.announcements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.announcement-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
}

.announcement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #2ECC71;
}

.announcement-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
}

.announcement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.announcement-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
  min-width: 60px;
}

.announcement-date .day {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #2ECC71;
  line-height: 1;
}

.announcement-date .month {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  margin-top: 5px;
}

.announcement-content {
  padding: 25px;
}

.announcement-category {
  display: inline-block;
  background: #2ECC71;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.announcement-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.announcement-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.announcement-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.announcement-meta span {
  font-size: 13px;
  color: #999;
}

.announcement-meta i {
  margin-right: 5px;
}

.announcements-cta {
  background: #f8f9fa;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
}

.announcements-cta h3 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.announcements-cta p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.announcements-cta .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
}

.announcements-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

/* Duyuru Detay Sayfası */
.announcement-detail {
  max-width: 900px;
  margin: 0 auto;
}

.announcement-detail-header {
  margin-bottom: 30px;
}

.announcement-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.announcement-date-info,
.announcement-views {
  font-size: 14px;
  color: #666;
}

.announcement-date-info i,
.announcement-views i {
  margin-right: 5px;
  color: #2ECC71;
}

.announcement-detail-image {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.announcement-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.announcement-detail-content {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.announcement-excerpt {
  font-size: 20px;
  line-height: 1.8;
  color: #555;
  font-weight: 500;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.announcement-body {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.announcement-body p {
  margin-bottom: 20px;
}

.announcement-share {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 60px;
}

.announcement-share h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.share-btn {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.share-btn.facebook {
  background: #3b5998;
  color: #fff;
}

.share-btn.twitter {
  background: #1da1f2;
  color: #fff;
}

.share-btn.linkedin {
  background: #0077b5;
  color: #fff;
}

.share-btn.copy {
  background: #666;
  color: #fff;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.related-announcements {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid #f0f0f0;
}

.related-announcements h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
}

.no-content {
  text-align: center;
  padding: 60px 20px;
}

.no-content i {
  font-size: 64px;
  color: #ccc;
  margin-bottom: 20px;
}

.no-content p {
  font-size: 18px;
  color: #666;
}

@media (max-width: 768px) {
  .announcements-grid {
    grid-template-columns: 1fr;
  }

  .category-buttons {
    justify-content: center;
  }

  .announcement-meta-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    width: 100%;
    justify-content: center;
  }
}

/* İletişim Sayfası */
.contact-intro {
  text-align: center;
  margin-bottom: 50px;
}

.contact-intro h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.contact-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.form-success-alert,
.form-error-alert {
  background: #f8f9fa;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.form-success-alert {
  background: #d4edda;
  border-left: 4px solid #2ECC71;
}

.form-error-alert {
  background: #f8d7da;
  border-left: 4px solid #d9534f;
}

.form-success-alert i {
  color: #2ECC71;
  font-size: 24px;
  margin-top: 2px;
}

.form-error-alert i {
  color: #d9534f;
  font-size: 24px;
  margin-top: 2px;
}

.form-success-alert h3,
.form-error-alert h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

.form-success-alert p,
.form-error-alert p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-info-section {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  height: fit-content;
}

.contact-info-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

.contact-info-cards {
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.contact-info-details p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.contact-info-details a {
  color: #2ECC71;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-details a:hover {
  color: #1ABC9C;
}

.contact-social {
  padding-top: 30px;
  border-top: 2px solid #e0e0e0;
}

.contact-social h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

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

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link.facebook {
  background: #3b5998;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.twitter {
  background: #1da1f2;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-form-section {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.form-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #2ECC71;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-submit {
  margin-top: 30px;
}

.contact-form .submit-btn {
  background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
  width: 100%;
}

.contact-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.contact-form .submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-map-section-wrapper {
  padding: 60px 0;
  background: #f8f9fa;
}

.contact-map-section-wrapper .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.contact-map-section {
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
}

.contact-map-section h3 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
}

.contact-map-section > p {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.map-container {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 10px;
  display: block;
}

.map-address {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.map-address p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.contact-faq {
  background: #f8f9fa;
  padding: 50px;
  border-radius: 10px;
}

.contact-faq h3 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #2ECC71;
}

.faq-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.faq-item a {
  color: #2ECC71;
  text-decoration: none;
  font-weight: 600;
}

.faq-item a:hover {
  color: #1ABC9C;
}

@media (max-width: 768px) {
  .contact-main {
    grid-template-columns: 1fr;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 30px 20px;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-info-icon {
    margin-bottom: 15px;
  }

  .contact-form .form-group {
    margin-bottom: 20px;
  }

  .contact-form .submit-btn {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
  }

  .social-links {
    justify-content: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-section-wrapper {
    padding: 40px 0;
  }

  .contact-map-section-wrapper .container {
    padding: 0 20px;
  }

  .map-container {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
  }

  .map-container iframe {
    width: 100% !important;
    max-width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
  }
}

/* Hamburger Menü */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1002;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobil Responsive */
@media (max-width: 768px) {
  .wrapper {
    display: flex;
    flex-direction: column;
  }

  .navbar-container {
    padding: 0 20px;
    height: 90px;
    min-height: 90px;
  }

  .logo-img {
    height: auto;
    max-height: 60px;
    max-width: 200px;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

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

  .navbar-item {
    width: 100%;
  }

  .navbar-link {
    padding: 15px 30px;
    width: 100%;
    font-size: 14px;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    border-top: 1px solid #eee;
    margin-top: 0;
    display: none !important;
  }

  .dropdown.open .dropdown-content {
    display: block !important;
  }

  /* Mobilde bayilikler dropdown tek sütun */
  .dropdown.open .bayilikler-dropdown {
    grid-template-columns: 1fr !important;
    min-width: 100% !important;
    max-width: 100% !important;
    max-height: 400px;
  }

  .navbar-contact {
    display: none;
  }

  .navbar-contact.mobile {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 30px;
    border-top: 1px solid #eee;
    margin-top: 20px;
  }

  .contact-phone,
  .contact-email {
    font-size: 14px;
  }

  .hamburger {
    display: flex;
  }

  .wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  /* Mobilde sıralama: title → juice → desc → more */
  .content {
    top: auto;
    left: auto;
    transform: none;
    padding: 0;
    padding-top: 0;
    padding-bottom: 20px;
    display: contents;
    position: relative;
    width: 100%;
  }

  .title {
    font-size: 80px;
    line-height: 1;
    margin-top: 80px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    order: 1;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    text-align: center !important;
    display: block;
    box-sizing: border-box;
    align-self: stretch;
    min-height: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tagline {
    font-size: 18px;
    margin-bottom: 15px;
    order: 5;
    display: none;
  }

  .pages {
    font-size: 14px;
    margin-bottom: 15px;
    order: 6;
    display: none;
  }

  .pages span {
    font-size: 30px;
  }

  .desc {
    flex: 0 0 100%;
    margin-top: 0;
    order: 3;
    padding: 0 20px;
  }

  .more {
    width: 100%;
    margin-bottom: 20px;
    order: 4;
    flex: 0 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .more a {
    font-size: 14px;
    padding: 12px 20px;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .desc p:nth-child(1) {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .desc p:nth-child(2) {
    font-size: 14px;
    line-height: 1.6;
  }

  .juice {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    order: 2;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .juice img {
    max-height: 300px;
    width: auto;
    animation: pulseOpacity 3s ease-in-out infinite;
    margin: 0 auto;
  }

  #juice-image {
    max-height: 300px;
  }
 
  /* Mobilde logo için özel stil (ilk ürün görseli / logo) */
  #juice-image {
    max-height: 250px;
    max-width: 250px;
    margin-top: 80px;
    animation: pulseOpacity 3s ease-in-out infinite !important;
  }

  .arrows {
    position: absolute;
    top: calc(90px + 80px + 10px);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    z-index: 100;
    pointer-events: none;
    order: 2.5;
    margin: 0;
  }

  .arrows .prev,
  .arrows .next {
    position: static;
    pointer-events: all;
  }

  .arrows button {
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .leaves {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
  }

  .leaves img {
    max-width: 150px;
    max-height: 150px;
    opacity: 0.6;
  }

  .leaves .layer:nth-child(1) {
    top: 10% !important;
    left: 5% !important;
  }

  .leaves .layer:nth-child(2) {
    top: 20% !important;
    left: 80% !important;
  }

  .leaves .layer:nth-child(3) {
    top: 60% !important;
    left: 10% !important;
  }

  .leaves .layer:nth-child(4) {
    top: 70% !important;
    left: 75% !important;
  }

  .leaves .layer:nth-child(5) {
    top: 40% !important;
    left: 85% !important;
  }

  .wrapper {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 60px;
  }

  .tagline {
    font-size: 16px;
  }

  .juice img {
    max-height: 250px;
  }

  #juice-image {
    max-height: 250px;
  }
}



