body {
  font-family: 'Nunito', sans-serif !important;
}

.sitename {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
}

.sitename span {
  color: #25d366; /* WhatsApp yeşili, markanızla uyumlu */
  font-weight: 800;
}

/* Mobil cihazlar için responsive tasarım */
@media (max-width: 768px) {
  .sitename {
    font-size: 22px;
  }
}

/* Hover efekti */
.logo:hover .sitename {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Navigation Menu Styles */
.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 15px;
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
  .navmenu ul {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 15px 0;
    z-index: 999;
  }

  .navmenu ul.show {
    display: flex;
  }

  .navmenu a {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
  }

  .mobile-nav-toggle {
    display: block;
    cursor: pointer;
    padding: 5px;
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}

/* Hero Section Styles */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero .carousel-item {
  position: relative;
  min-height: 70vh;
}

.hero .carousel-item img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero .carousel-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.hero h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

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

.hero-whatsapp-btn:hover {
  background: #fff;
  color: #25d366;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero .carousel-item,
  .hero .carousel-item img {
    min-height: 60vh;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-whatsapp-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

/* About Section Styles */
.about-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.about-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #555;
}

.about-features i {
  color: #25d366;
  font-size: 20px;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.about-cta a {
  flex: 1 1 auto;
  min-width: 180px;
  text-align: center;
  white-space: nowrap;
}

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  color: #25d366;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #25d366;
  border-radius: 25px;
  background: transparent;
}

.read-more:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-2px);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
}

.whatsapp-link:hover {
  background: #fff;
  color: #25d366;
  transform: translateY(-2px);
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: #1877f2;
  color: #fff;
  border: 2px solid #1877f2;
}

.facebook-link:hover {
  background: #fff;
  color: #1877f2;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .about-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .about-cta a {
    width: 100%;
    min-width: unset;
  }
}

/* Features Section Styles */
.features .feature-box {
  padding: 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  background: #fff;
  transition: all 0.3s ease;
  height: 100%;
}

.features .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.features .icon-box {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.features .icon-box i {
  font-size: 28px;
  color: #fff;
}

.features .feature-box:hover .icon-box {
  background: #128C7E;
  transform: rotateY(360deg);
}

.features h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

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

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

.features .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
}

.features .feature-list i {
  color: #25d366;
  font-size: 16px;
}

@media (max-width: 768px) {
  .features .feature-box {
    padding: 20px;
  }

  .features h3 {
    font-size: 20px;
  }

  .features p {
    font-size: 14px;
  }

  .features .feature-list li {
    font-size: 13px;
  }
}

/* Services Section Styles */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #25d366, #128C7E);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
  transform: rotateY(180deg);
}

.icon-wrapper i {
  font-size: 28px;
  color: #25d366;
  transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper i {
  transform: rotateY(-180deg);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25d366;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 12px;
  color: #128C7E;
}

.service-link i {
  font-size: 18px;
}

@media (max-width: 768px) {
  .service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .icon-wrapper i {
    font-size: 24px;
  }
}

/* Portfolio Section Styles */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  color: #ffffff;
  text-align: center;
}

.portfolio-info h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  color: #ffffff;
}

.portfolio-info p {
  font-size: 14px;
  margin: 5px 0 0;
  opacity: 0.8;
  color: #ffffff;
}

/* Contact Section Styles */
.contact-info-box {
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

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

.contact-info-box i {
  font-size: 32px;
  color: #25d366;
  margin-bottom: 15px;
}

.contact-info-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.contact-info-box p {
  color: #666;
  margin: 0;
}

.contact-link {
  display: inline-block;
  padding: 8px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: #128C7E;
  color: #fff;
  transform: translateY(-2px);
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

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

.form-control {
  height: 50px;
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #25d366;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
  resize: none;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.submit-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.submit-btn i {
  font-size: 18px;
}

@media (max-width: 768px) {
  .contact-info-box {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }

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

/* Map Section Styles */
.map-container {
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.map-description {
  color: #666;
  margin-bottom: 20px;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-directions:hover {
  background: #128C7E;
  transform: translateY(-2px);
  color: white;
}

.btn-directions i {
  font-size: 18px;
}

@media (max-width: 768px) {
  .map-container {
    border-radius: 0;
  }
  
  .btn-directions {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* WhatsApp Popup Styles */
.whatsapp-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  animation: slideIn 1s ease-out 2s forwards;
  opacity: 0;
  transform: translateY(100px);
}

.whatsapp-popup-content {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 15px;
  max-width: 300px;
}

.popup-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

.popup-header img {
  width: 40px;
  height: 40px;
}

.popup-header span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background: #128C7E;
  transform: scale(1.02);
  color: white;
}

.whatsapp-button i {
  font-size: 20px;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobil cihazlar için düzenleme */
@media (max-width: 768px) {
  .whatsapp-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  
  .whatsapp-popup-content {
    max-width: none;
  }
}

.cta-btn.animated-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #25d366, #128C7E);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  white-space: nowrap; /* Metni tek satırda tutar */
  max-width: 100%; /* Maksimum genişliği sınırlar */
}

.cta-btn.animated-whatsapp-btn .whatsapp-icon-wrapper {
  min-width: 24px; /* Minimum genişlik */
  height: 24px;
  padding: 4px;
}

.cta-btn.animated-whatsapp-btn i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .cta-btn.animated-whatsapp-btn {
    padding: 6px 15px;
    font-size: 14px;
  }
  
  .cta-btn.animated-whatsapp-btn .whatsapp-icon-wrapper {
    min-width: 20px;
    height: 20px;
  }
  
  .cta-btn.animated-whatsapp-btn i {
    font-size: 14px;
  }
}

.navmenu {
  padding: 0;
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 15px;
}

.navmenu a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.navmenu a i {
  font-size: 16px;
}

.navmenu a:hover,
.navmenu .active {
  color: #25d366;
  background: rgba(37, 211, 102, 0.1);
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
  .navmenu ul {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 15px 0;
  }
  
  .navmenu a {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 15px;
  }
}

.hero-whatsapp-btn {
  display: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  margin-top: 20px;
}

.hero-whatsapp-btn i {
  font-size: 20px;
}

.hero-whatsapp-btn:hover {
  background: #ffffff;
  color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .hero-whatsapp-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-whatsapp-btn i {
    font-size: 18px;
  }
}