:root {
  --teralis-green: #0B4F2F;
  --teralis-green-light: #0E6B41;
  --teralis-green-dark: #083D24;
  --strawberry-red: #E63946;
  --cream: #FAF9F6;
  --white: #FFFFFF;
  --text-dark: #2C3E50;
  --text-gray: #6C757D;
  --shadow: rgba(11, 79, 47, 0.08);
  --shadow-hover: rgba(11, 79, 47, 0.15);
  --gradient-primary: linear-gradient(135deg, #0B4F2F 0%, #0E6B41 100%);
  --gradient-accent: linear-gradient(135deg, #E63946 0%, #FF6B6B 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
    overflow-x: hidden;

}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--teralis-green-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
              transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.1s;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  background-color: white;
  padding: 10px;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  font-size: 2.75rem;
  font-weight: 800;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 4px;
}

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(11, 79, 47, 0.1);
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-size: 1.75rem;
  width: 120px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
}

.nav-menu > li > a.active::after {
  width: 100%;
}

.nav-menu > li > a:not([href="#"]):hover::after {
  width: 100%;
}

.nav-menu > li:hover > a[href="#"]::after {
  width: 0;
}

.dropdown-icon {
  font-size: 0.7rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu > li:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(11, 79, 47, 0.1);
  margin-top: 0.5rem;
}

.nav-menu > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--teralis-green);
  padding-left: 2rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--teralis-green);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.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(8px, -8px);
}
/* Ana Hero Alanı - Görseli buraya ekliyoruz */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Eski gradient yerine görsel yolunu ekledik */
  /* Not: CSS dosyası 'css' klasöründe olduğu için bir üst dizine çıkmak gerekebilir (../) */

  color: var(--white);
  overflow: hidden;
  padding: 4rem 0;
}

/* Görsel Üzerine Koyu Filtre (Yazı Okunurluğu İçin Şart) */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Eski beyaz gradient yerine, siyah yarı saydam katman */
  background: linear-gradient(135deg, rgba(11, 79, 47, 0.678) 0%, rgba(0, 0, 0, 0.322) 100%);
  z-index: 1;
}

/* Sağ üstteki kırmızı ışıltı efekti (Çilek rengi vurgusu) */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  /* Görsel üzerinde belli olması için opaklığı biraz artırdım (0.2 -> 0.3) */
  background: radial-gradient(circle, rgba(230, 57, 70, 0.3), transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, 30px) rotate(10deg); }
}

.hero h1, .hero p {
  text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Hafif bir siyah gölge */
}

.hero-content > div:first-child { /* Veya o div'e bir class verip */
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s ease;
  padding: 0 1.5rem;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero p {
  font-size: 1.375rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn i {
  font-size: 1.125rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(11, 79, 47, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(11, 79, 47, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--teralis-green);
  border: 2px solid var(--teralis-green);
}

.btn-secondary:hover {
  background: var(--teralis-green);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  to { left: 100%; }
}

.image-placeholder i {
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.1);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 10px 40px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 1px solid rgba(11, 79, 47, 0.08);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px var(--shadow-hover);
}

.card-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.card-content {
  padding: 2rem;
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--teralis-green);
  font-size: 1.5rem;
}

.card p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* --- Fully Clickable Product Card Link Wrapper --- */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-link .card {
  cursor: pointer;
}

.card-link:hover .card {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px var(--shadow-hover);
}

.card-link:hover .card-image img {
  transform: scale(1.08);
}

.card-link .card-image img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Hero Slider / Debanner Styles --- */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
}

/* hero::before ve hero::after slider modunda devre dışı */
.hero-slider::before,
.hero-slider::after {
  display: none !important;
}

.hero-slider .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slider .hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slider .hero-slide .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
  color: var(--white);
}

.hero-slider .hero-slide .hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-slider .hero-slide .hero-content p {
  font-size: 1.375rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-slider .hero-slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-slider .hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider .hero-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

@media (min-width: 768px) {
  .hero-slider { min-height: 75vh; }
  .hero-slider .hero-slide .hero-content h1 { font-size: 4rem; }
  .hero-slider .hero-slide .hero-content p { font-size: 1.5rem; }
}

@media (max-width: 767px) {
  .hero-slider { min-height: 60vh; }
  .hero-slider .hero-slide .hero-content h1 { font-size: 2.25rem !important; }
  .hero-slider .hero-slide .hero-content p { font-size: 1.125rem !important; }
}

/* --- Dealer / Bayilik Section Styles --- */
.dealer-section {
  background: var(--cream);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.dealer-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 79, 47, 0.05), transparent 70%);
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

.dealer-section .dealer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dealer-section .dealer-content h2 {
  font-size: 2.5rem;
  color: var(--teralis-green-dark);
  margin-bottom: 1.5rem;
}

.dealer-section .dealer-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.dealer-section .dealer-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.dealer-section .dealer-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(11, 79, 47, 0.08);
}

.dealer-section .dealer-benefits li i {
  color: var(--teralis-green);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.dealer-section .dealer-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-hover);
}

.dealer-section .dealer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 968px) {
  .dealer-section .dealer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* --- Left-Aligned Section Title --- */
.section-title-left {
  text-align: left;
  margin-bottom: 2.5rem;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--teralis-green-dark);
}

@media (min-width: 768px) {
  .section-title-left { font-size: 3rem; }
}

@media (max-width: 767px) {
  .section-title-left { font-size: 2rem; }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(11, 79, 47, 0.08);
  box-shadow: 0 4px 20px var(--shadow);
}

.feature-item:hover {
  background: var(--cream);
  transform: translateX(10px);
  box-shadow: 0 8px 30px var(--shadow-hover);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(11, 79, 47, 0.2);
}

.feature-content h4 {
  color: var(--teralis-green);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.feature-content p {
  color: var(--text-gray);
  line-height: 1.2;
}

.cta-section {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  animation: float 10s ease-in-out infinite;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

footer {
  background: var(--teralis-green-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.375rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--white);
  transform: translateX(5px);
  display: inline-block;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: var(--strawberry-red);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  animation: pulse 2.5s infinite;
}

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

.whatsapp-float:hover {
  transform: scale(1.15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  height: 320px;
  pointer-events: none;
  box-shadow: 0 10px 40px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px var(--shadow-hover);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(11, 79, 47, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: var(--white);
}

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

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--teralis-green);
  color: var(--teralis-green);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--teralis-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 79, 47, 0.3);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--teralis-green);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teralis-green);
  box-shadow: 0 0 0 4px rgba(11, 79, 47, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--teralis-green);
  box-shadow: 0 0 0 4px rgba(11, 79, 47, 0.08);
}

.breadcrumb {
  padding: 1.25rem 0;
  background: var(--cream);
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray);
}

.breadcrumb-list a {
  color: var(--teralis-green);
  font-weight: 600;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(11, 79, 47, 0.08);
}

.faq-question {
  padding: 1.75rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--teralis-green);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--cream);
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 2rem 1.75rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(11, 79, 47, 0.08);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-hover);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.75rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: 1.125rem;
  font-weight: 600;
}

.table-responsive {
  overflow-x: auto;
  margin: 2.5rem 0;
  border-radius: 16px;
  box-shadow: 0 10px 40px var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

thead {
  background: var(--gradient-primary);
  color: var(--white);
}

th, td {
  padding: 1.25rem 1.5rem;
  text-align: left;
}

th {
  font-weight: 700;
}

tbody tr {
  border-bottom: 1px solid #F0F0F0;
  transition: background 0.3s ease;
}

tbody tr:hover {
  background: var(--cream);
}

.highlight-box {
  background: linear-gradient(135deg, rgba(11, 79, 47, 0.05), rgba(11, 79, 47, 0.02));
  border-left: 5px solid var(--teralis-green);
  padding: 2.5rem;
  margin: 3rem 0;
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--shadow);
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.9;
}

.article-content p {
  margin-bottom: 1.75rem;
}

.article-content h2,
.article-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.article-content ul {
  margin-bottom: 1.75rem;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.75rem;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(11, 79, 47, 0.08);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px var(--shadow-hover);
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image .image-placeholder {
  border-radius: 0;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-title {
  font-size: 1.5rem;
  color: var(--teralis-green);
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-excerpt {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--cream);
  color: var(--teralis-green);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(11, 79, 47, 0.08);
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px var(--shadow-hover);
}

.social-card i {
  font-size: 2.5rem;
  color: var(--teralis-green);
}

.social-card span {
  font-weight: 600;
  color: var(--text-dark);
}

@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  .section { padding: 6rem 0; }
  .hero { min-height: 75vh; }
  .hero h1 { font-size: 4rem; }
  .hero p { font-size: 1.5rem; }
  .section-title { font-size: 3rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-content { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-content { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 75px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: left;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px var(--shadow);
    padding: 1.5rem 0;
    gap: 0;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }

  .nav-menu.active { left: 0; }

  .nav-menu > li {
    padding: 0;
    width: 100%;
  }

  .nav-menu > li > a {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    background: var(--cream);
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu > li.dropdown-open .dropdown-menu {
    max-height: 400px;
    padding: 0.5rem 0;
  }

  .dropdown-menu a {
    padding: 0.75rem 2.5rem;
  }

  .hamburger { display: flex; }
  .hero { min-height: 60vh; }
  .hero h1 { font-size: 2.25rem !important; }
  .hero p { font-size: 1.125rem !important; }
  .section-title { font-size: 2rem; }
  .logo { font-size: 1.5rem; }

  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: repeat(2, 1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="minmax(350px"],
  [style*="minmax(300px"] {
    grid-template-columns: 1fr !important;
  }

  [style*="height: 500px"] {
    height: 300px !important;
  }

  [style*="gap: 4rem"],
  [style*="gap: 5rem"] {
    gap: 2rem !important;
  }

  .contact-info-card,
  [style*="padding: 2rem"][style*="background: var(--cream)"],
  [style*="padding: 2rem"][style*="border-radius: 16px"] {
    padding: 1.5rem !important;
  }

  [style*="font-size: 2.5rem"] {
    font-size: 1.75rem !important;
  }

  [style*="font-size: 3.5rem"] {
    font-size: 2rem !important;
  }
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(11, 79, 47, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: #FCD34D;
  font-size: 1.25rem;
}

.testimonial-text {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--green);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--dark);
  font-size: 1.05rem;
}

.testimonial-author span {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.stat-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(11, 79, 47, 0.08);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--green);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.stat-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* --- İLETİŞİM SAYFASI ÖZEL STİLLERİ --- */

/* Hero Görselini Değiştirme (Contact Sayfası İçin) */
.hero.hero-contact {
  background: url('../assets/img/iletisim-bg.jpg') no-repeat center center;
  background-size: cover;
  min-height: 40vh;
}

/* İletişim Ana Düzeni (Grid) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

/* Sol Taraf: Yeşil Bilgi Kartı */
.contact-info-card {
  background: var(--teralis-green);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.info-icon {
  background: rgba(255,255,255,0.2);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-item h5 {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.info-item p, 
.info-item a {
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
}

.btn-whatsapp-full {
  background: #25D366;
  color: var(--white);
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  border: none;
}
.btn-whatsapp-full:hover {
  background: #1ebc57;
  color: var(--white);
}

/* Harita Alanı */
.map-container {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: 0 10px 30px var(--shadow);
  border: 1px solid rgba(11, 79, 47, 0.08);
}

/* Sağ Taraf: Sipariş Formu Kartı */
.order-form-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow);
  border: 1px solid rgba(11, 79, 47, 0.08);
}

.form-title {
  margin-bottom: 0.5rem;
  color: var(--teralis-green-dark);
}

.form-subtitle {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.full-width {
  width: 100%;
  justify-content: center;
  padding: 1.2rem;
  margin-top: 1rem;
}

/* Footer Logo Düzeltme */
.footer-logo {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
  /* Logo görseli yerine text kullanıldığı durumlar için */
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive (Mobil) Düzenlemeler */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .order-form-card {
    padding: 2rem;
  }
}