/* Tadelit Gıda Web Sitesi - Ana CSS Dosyası */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* CSS Değişkenleri */
:root {
  --primary-green: #4caf50;
  --secondary-green: #6cc24a;
  --dark-green: #004d00;
  --light-green: #e8f5e8;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

/* Genel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background: linear-gradient(135deg, #3d6a3d, #5a8c5a, #7bb87b);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header ve Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-green);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.contact-btn {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #3d6a3d, #5a8c5a, #7bb87b);
  height: calc(100vh + 80px);
  min-height: calc(100vh + 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
  box-sizing: border-box;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%234CAF50" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%236CC24A" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  margin-top: 30px;
}

.hero-left {
  flex: 1;
  text-align: left;
  color: var(--white);
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.hero-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-main-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.8),
    rgba(108, 194, 74, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.hero-image-container:hover .hero-image-overlay {
  opacity: 1;
}

.hero-image-content {
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero-image-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-image-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-image-content p {
  font-size: 1rem;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  white-space: nowrap;
  min-width: 120px;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-item i {
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item span {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s both;
  line-height: 1.7;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4a7c4a, #6ba86b);
  color: var(--white);
  padding: 18px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.4s both;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Section Stilleri */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 2px;
}

/* Ürün Kartları */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px 10px 0 0;
  background-color: #f8f9fa;
  padding: 10px;
}

.product-card-content {
  padding: 1.5rem;
}

.product-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.product-card p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-btn {
  background: var(--primary-green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
}

.product-btn:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
}

/* Neden Bizi Tercih Etmelisiniz */
.features {
  background: var(--light-gray);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* Müşteri Yorumları */
.testimonials {
  background: var(--white);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.testimonial-slide {
  background: var(--light-gray);
  padding: 3rem;
  text-align: center;
  border-radius: 15px;
  margin: 0 1rem;
}

.testimonial-slide p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-green);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #3d6a3d, #5a8c5a, #7bb87b);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-green);
}

.footer-section p,
.footer-section a {
  color: var(--white);
  text-decoration: none;
  line-height: 1.6;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--secondary-green);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-green);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 0.3rem 0;
}

.legal-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .legal-links {
    justify-content: center;
  }
}

/* Form Stilleri */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-green);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease;
}

/* Animasyonlu Yazı Stilleri */
.animated-text {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.3s both;
}

.static-text {
  color: var(--white);
}

.animated-word {
  color: #ffd700;
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: all 0.5s ease;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  min-width: 80px;
  text-align: center;
  animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  }
}

.animated-word.changing {
  animation: wordChange 1.2s ease-in-out;
}

@keyframes wordChange {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  25% {
    transform: translateY(-10px) scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) scale(0.85);
    opacity: 0.2;
  }
  75% {
    transform: translateY(-10px) scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.animated-word:hover {
  transform: scale(1.1);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 80px;
    position: relative;
  }

  .logo {
    font-size: 1.4rem;
    order: 1;
    flex: 1;
    text-align: center;
  }

  .logo img {
    height: 30px;
    margin-right: 8px;
  }

  .mobile-menu-btn {
    display: flex !important;
    order: 2;
    background: linear-gradient(
      135deg,
      var(--primary-green),
      var(--secondary-green)
    );
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .mobile-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    text-align: left;
    box-shadow: var(--shadow-hover);
    border-radius: 0 0 15px 15px;
    padding: 1rem 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li:last-child a {
    display: block;
    text-align: left;
  }

  .nav-menu li:last-child a i {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    display: block;
    text-align: left;
    color: var(--dark-green);
    transition: var(--transition);
  }

  .nav-menu a:hover {
    background: var(--light-green);
    color: var(--primary-green);
  }

  .nav-menu li:nth-child(3) a {
    margin-left: 0;
  }

  .nav-menu li:last-child {
    position: relative;
    margin-left: 0;
  }

  .nav-menu li:last-child::after {
    display: none;
  }

  .nav-menu li:last-child::before {
    display: none;
  }

  .contact-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
  }

  .hero {
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 2rem;
    min-height: auto;
    height: auto;
  }

  .hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 1rem 0;
  }

  .hero-left {
    text-align: center;
  }

  .hero-features {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .feature-item {
    min-width: 140px;
    padding: 0.9rem 1.3rem;
    font-size: 0.9rem;
    display: flex;
    visibility: visible;
    opacity: 1;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .animated-text {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-image-placeholder {
    padding: 2rem 1.5rem;
    margin: 1rem 0;
  }

  .hero-image-placeholder i {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Hakkımızda sayfası mobil düzenleme */
  .hakkimizda-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .hakkimizda-content > div:first-child {
    order: 2 !important;
  }

  .hakkimizda-content > div:last-child {
    order: 1 !important;
  }

  /* Misyonumuz bölümü için özel düzenleme */
  .misyon-content > div:first-child {
    order: 1 !important;
  }

  .misyon-content > div:last-child {
    order: 2 !important;
  }

  .hakkimizda-content img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    border-radius: 15px !important;
    box-shadow: var(--shadow) !important;
  }

  .hakkimizda-content h2 {
    font-size: 1.8rem !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
  }

  .hakkimizda-content p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
  }

  /* İletişim sayfası mobil düzenleme */
  .iletisim-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .iletisim-form {
    order: 2 !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .iletisim-form form {
    margin: 0 !important;
    padding: 1.5rem !important;
    width: 100% !important;
  }

  .iletisim-grid .container {
    padding: 0 10px !important;
  }

  .iletisim-grid {
    margin: 0 -10px !important;
    width: calc(100% + 20px) !important;
  }

  .iletisim-bilgileri {
    order: 1 !important;
  }

  .iletisim-bilgileri > div {
    margin-bottom: 1.5rem !important;
  }

  .iletisim-bilgileri h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .iletisim-bilgileri p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  .iletisim-form h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
  }

  .iletisim-bilgileri h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 0.9rem !important;
    padding: 10px 12px !important;
  }

  .submit-btn {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }

  .social-links {
    justify-content: center !important;
    gap: 0.8rem !important;
  }

  .social-links a {
    width: 35px !important;
    height: 35px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    min-height: 70px;
    position: relative;
  }

  .logo {
    font-size: 1.2rem;
    order: 1;
    flex: 1;
    text-align: center;
  }

  .logo img {
    height: 25px;
    margin-right: 6px;
  }

  .mobile-menu-btn {
    display: flex !important;
    order: 2;
    background: linear-gradient(
      135deg,
      var(--primary-green),
      var(--secondary-green)
    );
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .mobile-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    text-align: left;
    box-shadow: var(--shadow-hover);
    border-radius: 0 0 15px 15px;
    padding: 0.8rem 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li:last-child a {
    display: block;
    text-align: left;
  }

  .nav-menu li:last-child a i {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
  }

  .nav-menu a {
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    display: block;
    text-align: left;
    color: var(--dark-green);
    transition: var(--transition);
  }

  .nav-menu a:hover {
    background: var(--light-green);
    color: var(--primary-green);
  }

  .nav-menu li:nth-child(3) a {
    margin-left: 0;
  }

  .nav-menu li:last-child {
    position: relative;
    margin-left: 0;
  }

  .nav-menu li:last-child::after {
    display: none;
  }

  .nav-menu li:last-child::before {
    display: none;
  }

  .contact-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
  }

  .hero {
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 2rem;
    min-height: auto;
    height: auto;
  }

  .hero-content {
    padding: 1rem 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .animated-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    display: flex;
    visibility: visible;
    opacity: 1;
    padding: 1rem 0;
  }

  .feature-item {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    display: flex;
    visibility: visible;
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .feature-item span {
    display: block;
    text-align: center;
    visibility: visible;
    opacity: 1;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
  }

  .feature-item i {
    display: block;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    visibility: visible;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    width: auto;
    height: auto;
    margin: 0 auto 0.5rem auto;
    text-align: center;
    flex-shrink: 0;
  }

  .hero-image-placeholder {
    padding: 1.5rem 1rem;
    margin: 0.5rem 0;
  }

  .hero-image-placeholder i {
    font-size: 2.5rem;
  }

  .section {
    padding: 60px 0;
  }

  .testimonial-slide {
    padding: 2rem 1rem;
  }

  /* Hakkımızda sayfası mobil düzenleme - küçük ekranlar */
  .hakkimizda-content img {
    height: 200px !important;
  }

  .hakkimizda-content h2 {
    font-size: 1.5rem !important;
  }

  .hakkimizda-content p {
    font-size: 0.9rem !important;
  }

  /* İletişim sayfası mobil düzenleme - küçük ekranlar */
  .iletisim-bilgileri h3 {
    font-size: 1rem !important;
  }

  .iletisim-bilgileri p {
    font-size: 0.8rem !important;
  }

  .iletisim-form h2,
  .iletisim-bilgileri h2 {
    font-size: 1.3rem !important;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 0.8rem !important;
    padding: 8px 10px !important;
  }

  .submit-btn {
    font-size: 0.8rem !important;
    padding: 10px 16px !important;
  }

  .social-links a {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.8rem !important;
  }

  /* İletişim formu küçük ekranlar için ek düzenleme */
  .iletisim-form {
    margin: 0 !important;
    width: 100% !important;
  }

  .iletisim-form form {
    padding: 1.2rem !important;
    width: 100% !important;
  }

  .iletisim-grid .container {
    padding: 0 8px !important;
  }

  .iletisim-grid {
    margin: 0 -8px !important;
    width: calc(100% + 16px) !important;
  }
}

/* Admin Panel Enhancements */
.admin-content {
  padding: 2rem;
  background: #f8f9fa;
  min-height: 100vh;
}

.admin-header {
  background: linear-gradient(135deg, #4caf50, #6cc24a);
  color: white;
  padding: 2.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
  text-align: center;
}

.admin-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

/* Enhanced Table Styling */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.admin-table thead {
  background: linear-gradient(135deg, #004d00, #006600);
  color: white;
}

.admin-table th {
  padding: 1.5rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.admin-table tbody tr {
  transition: all 0.3s ease;
}

.admin-table tbody tr:hover {
  background: #f8f9fa;
  transform: scale(1.01);
}

/* Enhanced Button Styles */
.btn {
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.75rem;
}

.btn-info {
  background: linear-gradient(135deg, #17a2b8, #138496);
  color: white;
  box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
}

.btn-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
}

.btn-danger {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

/* Enhanced Status Badges */
.status-badge {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-new {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  animation: pulse 2s infinite;
}

.status-read {
  background: linear-gradient(135deg, #6c757d, #5a6268);
  color: white;
}

.status-replied {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
}

.status-closed {
  background: linear-gradient(135deg, #6c757d, #5a6268);
  color: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

/* Enhanced Alert Messages */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alert-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Politika Sayfaları Stilleri */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  line-height: 1.8;
}

.policy-intro {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 2rem;
  text-align: center;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  color: var(--dark-green);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--light-green);
  padding-bottom: 0.5rem;
}

.policy-section h3 {
  color: var(--primary-green);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.8rem 0;
}

.policy-section p {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.policy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}

.policy-section strong {
  color: var(--dark-green);
}

.contact-info {
  background: var(--light-green);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--dark-green);
}

.cookie-table {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

.cookie-table th {
  background: var(--primary-green);
  color: var(--white);
  font-weight: 600;
}

.cookie-table tr:hover {
  background: var(--light-green);
}

.cookie-table td:first-child {
  font-weight: 600;
  color: var(--dark-green);
}

/* Dashboard Product Cards */
.dashboard-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.dashboard-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-green);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.product-image-container img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  transition: all 0.4s ease;
  border-radius: 10px 10px 0 0;
  background-color: #f8f9fa;
  padding: 10px;
}

.dashboard-card:hover .product-image-container img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.dashboard-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay i {
  font-size: 2rem;
  color: var(--white);
}

.product-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light-green);
  color: var(--dark-green);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-actions {
  margin-top: 1rem;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.product-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Politika sayfaları için responsive tasarım */
@media (max-width: 768px) {
  .policy-content {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .policy-section h2 {
    font-size: 1.3rem;
  }

  .policy-section h3 {
    font-size: 1.1rem;
  }

  .cookie-table {
    font-size: 0.9rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.8rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .policy-content {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
  }

  .policy-section h2 {
    font-size: 1.2rem;
  }

  .policy-section h3 {
    font-size: 1rem;
  }

  .cookie-table {
    font-size: 0.8rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.6rem 0.3rem;
  }
}

/* Ürün Resimleri İyileştirmeleri */
.product-card img,
.product-image-container img {
  object-fit: contain !important;
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 10px 10px 0 0;
}

/* Ürün kartları için ek padding */
.product-card {
  overflow: hidden;
}

.product-card img {
  max-height: 250px;
  width: 100%;
  object-position: center;
}

/* Dashboard kartları için ek padding */
.dashboard-card .product-image-container {
  background-color: #f8f9fa;
  padding: 10px;
}

.dashboard-card .product-image-container img {
  max-height: 200px;
  width: 100%;
  object-position: center;
}

/* Ürün Detay Sayfası Stilleri */
.product-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.product-detail-left {
  position: sticky;
  top: 2rem;
}

.product-image-container {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.product-main-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
  padding: 1rem;
}

.product-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  background: var(--light-gray);
  border-radius: 10px;
  color: var(--gray);
}

.product-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.product-detail-right {
  padding-left: 2rem;
}

.product-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.product-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light-green);
  color: var(--dark-green);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product-category i {
  font-size: 0.8rem;
}

.product-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.product-description {
  margin-bottom: 2rem;
}

.product-description h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.product-description p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 1.1rem;
}

.product-features {
  margin-bottom: 2rem;
}

.product-features h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.product-features ul {
  list-style: none;
  padding: 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  color: var(--gray);
  font-size: 1rem;
}

.product-features li i {
  color: var(--primary-green);
  font-size: 0.9rem;
}

.product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-btn {
  background: var(--primary-green);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.contact-btn:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.back-btn {
  background: var(--white);
  color: var(--primary-green);
  padding: 1rem 2rem;
  border: 2px solid var(--primary-green);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.back-btn:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.similar-products {
  background: var(--light-gray);
}

.similar-products .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.similar-products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Ürün Detay Responsive */
@media (max-width: 768px) {
  .product-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-detail-left {
    position: static;
  }

  .product-detail-right {
    padding-left: 0;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .contact-btn,
  .back-btn {
    width: 100%;
    justify-content: center;
  }

  .similar-products .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Tıklanabilir Ürün Kartları */
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
}

.product-card-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-5px);
}

.product-card-link:hover .product-card {
  box-shadow: var(--shadow-hover);
}

.product-card-link:hover .product-btn {
  background: var(--secondary-green);
  transform: translateY(-2px);
}

.product-card-link .product-btn {
  background: var(--primary-green);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}

.product-card-link .product-btn:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
