:root {
  /* Ana Renkler */
  --primary-color: #4fc28a;
  --secondary-color: #201d14;
  --light-green: #e8f5e9;
  --soft-gray: #f5f5f5;
  --white: #ffffff;
  --soft-white: #f5f5f5;

  /* Metin Renkleri */
  --heading-color: #201d14;
  --text-primary: #333333;
  --text-secondary: #666666;
  --border-gray: #dfdfdf;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-weight: 700;
}

/* Genel stil tanımlamaları */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #4fc28a;
  border-color: #4fc28a;
}

.bg-light-green {
  background-color: var(--light-green);
}

.bg-soft-gray {
  background-color: var(--soft-gray);
}

/* Navbar Stilleri */
.navbar {
  position: fixed;
  top: 20px;
  right: 50px;
  left: 50px;
  width: auto;
  margin: 0;
  border-radius: 12px;
  /* background: #EFEFEF40 !important; */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #efefef60;
  z-index: 1050;
  transition: all 0.3s ease;
}

.navbar-back {
  background-color: #efefef40 !important;
}

.navbar-scrolled {
  background-color: #515151aa !important;
  border: 1px solid #515151bb;
}

.navbar-toggler {
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}

/* Logo için sol margin */
.navbar-brand {
  margin-left: 20px;
  margin-right: 0;
}

/* Menü için sağ margin */
.navbar-nav {
  margin-right: 20px;
  gap: 3px;
}

.brand-text {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.nav-link {
  color: var(--soft-white) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  /* color: #dfebe5 !important; */
  background-color: #ffffff40;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}

.navbar .btn-primary {
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
}

.text-green {
  color: #6bd3e8 !important;
}

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

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991.98px) {

  /* Navbar ana container */
  .navbar {
    position: fixed;
    top: 10px;
    right: 10px;
    left: 10px;
    width: 95vw;
    margin: 0;
    transform: none !important;
  }

  /* Mobil menü */
  .navbar-collapse {
    position: fixed;
    top: 70px;
    /* Navbar'ın altından başlasın */
    right: 10px;
    left: 10px;
    border-radius: 12px;
    padding: 1rem;
    background: #444041fe !important;
    max-height: calc(100vh - 90px);
    /* Ekranın altında kalmasını sağlar */
    overflow-y: auto;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
  }

  .navbar-collapse-scroll {
    background-color: #ededed !important;
  }

  /* Menü açık durumu */
  .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  /* Menü içeriği */
  .navbar-nav {
    margin: 0;
    padding: 0;
    gap: 3px;
  }

  .nav-item {
    margin: 0;
    padding: 0.5rem 0;
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  /* Teklif Al butonu */
  .nav-item .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
  }

  /* Hamburger menü */
  .navbar-toggler {
    padding: 0.25rem 0.5rem;
    border: none;
    margin-right: 0.5rem;
  }

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

  .navbar-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Navbar scroll efekti */
/* .navbar-scrolled {
    top: 0;
    right: 0;
    left: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95) !important;
} */

@media (max-width: 991.98px) {
  .navbar {
    position: fixed;
    top: 10px;
    right: 10px;
    left: 10px;
    width: 95vw;
    margin: 0;
  }

  .navbar-scrolled {
    position: fixed;
    top: 10px;
    right: 10px;
    left: 10px;
    width: 95vw;
    margin: 0;
    border-radius: 12px;
  }
}

/* Hero Section Stilleri */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gray);
  width: 100%;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: left;
  padding: 0;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(32, 29, 20, 0.85) 0%,
      rgba(32, 29, 20, 0.6) 50%,
      rgba(32, 29, 20, 0.2) 100%);
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.carousel-indicators {
  margin-bottom: 3rem;
  z-index: 3;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
  opacity: 0.5;
  transition: all 0.3s ease;
  z-index: 3;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: transparent;
  width: 3rem;
  height: 3rem;
}

/* Hover animasyonları */
.carousel-control-prev:hover .carousel-control-prev-icon {
  animation: slideLeft 1s infinite;
}

.carousel-control-next:hover .carousel-control-next-icon {
  animation: slideRight 1s infinite;
}

/* Animasyon keyframes */
@keyframes slideLeft {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }
}

@keyframes slideRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

.carousel-indicators button {
  background-color: var(--white) !important;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-indicators button.active {
  opacity: 0.8;
}

/* İstatistik Kartları */
.stats {
  margin-top: 3rem;
}

.stat-item {
  text-align: left;
  padding: 1rem 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

/* İçerik katmanı */
.hero-section .container {
  position: relative;
  z-index: 1;
}

/* Responsive düzenlemeler */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .carousel-item::before {
    background: linear-gradient(180deg,
        rgba(32, 29, 20, 0.65) 0%,
        rgba(32, 29, 20, 0.5) 100%);
  }

  .carousel-caption {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-text {
    font-size: 0.9rem;
  }
}

/* Hizmetler Section Stilleri */
.services-section {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border-gray);
}

.section-title {
  color: var(--heading-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-gray);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Hizmet kartı başlık alanı düzenlemesi */
.service-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 50px;
  /* 60px'ten 50px'e düşürdüm */
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  /* margin-bottom'ı kaldırdık */
  margin-right: 1rem;
  /* sağ margin ekledik */
  flex-shrink: 0;
  /* ikonun küçülmesini engelledik */
  color: var(--primary-color);
  font-size: 24px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
  /* margin-bottom'ı kaldırdık */
  color: var(--heading-color);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.service-features i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

/* Responsive düzenlemeler */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }

  .service-card {
    margin-bottom: 1rem;
    border: 1px solid var(--border-gray);
  }
}

/* Hakkımızda Section Stilleri */
.about-section {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-gray);
}

.about-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-card,
.vision-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-gray);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mission-card h3,
.vision-card h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.mission-card i,
.vision-card i {
  color: var(--primary-color);
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-gray);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.value-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive düzenlemeler */
@media (max-width: 991.98px) {
  .about-text {
    font-size: 1rem;
  }

  .value-card {
    margin: 1rem;
  }
}

/* Referanslar Section Stilleri */
.references-section {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border-gray);
}

.success-card,
.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-gray);
}

.success-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.success-icon,
.testimonial-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon i,
.testimonial-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.success-card h4,
.testimonial-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.success-card p,
.testimonial-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive düzenlemeler */
@media (max-width: 991.98px) {

  .success-card,
  .testimonial-card {
    margin-bottom: 1rem;
    border: 1px solid var(--border-gray);
  }
}

/* İletişim Section Stilleri */
.contact-section {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-gray);
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-gray);
}

.contact-item {
  margin-bottom: 2rem;
  text-align: center;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-item h4 {
  color: var(--heading-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-secondary);
  margin: 0;
}

.contact-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-gray);
}

.form-floating>.form-control {
  border: 2px solid var(--soft-gray);
  border-radius: 10px;
}

.form-floating>.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.form-floating>label {
  color: var(--text-secondary);
}

.contact-form .btn-primary {
  padding: 1rem 2rem;
  width: 100%;
  font-weight: 500;
  margin-top: 1rem;
}

/* Responsive düzenlemeler */
@media (max-width: 991.98px) {
  .contact-info {
    margin-bottom: 2rem;
  }

  .contact-item {
    margin-bottom: 1.5rem;
  }
}

/* Footer Stilleri */
.footer {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.8);
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer p {
  margin-bottom: 0;
  line-height: 1.8;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 1rem;
  width: 20px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  margin-top: 3rem;
}

.footer-bottom hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive düzenlemeler */
@media (max-width: 991.98px) {

  .footer-brand,
  .footer h5 {
    margin-bottom: 1rem;
  }

  .social-links {
    margin-top: 1rem;
  }

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

  .footer-bottom .text-md-end {
    text-align: center !important;
    margin-top: 1rem;
  }
}

/* Normal sayfa container'ı için Bootstrap'in varsayılan değerleri korunacak */
@media (min-width: 1400px) {
  .navbar-container {
    max-width: 100vw;
  }
}

.img-fluid {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 1px solid #dedede;
}
