/* Service Details Page Styles */

/* Hero Section Styles */
.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 0.5rem;
}

/* Mobile App Section */
.mobile-app-section {
  padding: 80px 0;
}

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.feature-card .icon i {
  font-size: 32px;
  color: white;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-weight: 600;
}

/* Project Carousel */
.project-carousel {
  padding: 60px 0 80px;
  overflow: hidden;
  position: relative;
  background-color: #f8f9fa;
}

.fullwidth-carousel {
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  width: 100%;
  max-width: 1000px;
  min-height: 400px;
  background: #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.carousel-image-container img {
  max-width: 100%;
  height: 400px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.carousel-image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(255,255,255,0.97) 92%, rgba(255,255,255,0.7) 100%, rgba(255,255,255,0.0) 100%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 18px 32px 14px 32px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 90px;
}

.carousel-image-overlay h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #223b51;
}

.carousel-image-overlay p {
  font-size: 1.05rem;
  color: #223b51;
  margin-bottom: 12px;
}

.carousel-image-overlay .badge-container {
  margin-top: 0;
}

.carousel-image-overlay .badge {
  background: var(--accent-color);
  color: #fff;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(34,59,81,0.07);
}

.carousel-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}

.carousel-content {
  position: relative;
  max-width: 80%;
  margin: 0 auto;
}

.carousel-control-prev, 
.carousel-control-next {
  display: none;
}

.carousel-indicators {
  margin-bottom: 0;
  position: relative;
  bottom: 0;
  z-index: 15;
}

.carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 0.5;
  transition: opacity 0.3s ease;
  margin: 0 8px;
  border: none;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2);
}

.badge-container .badge {
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 0.85rem;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 500;
  background-color: var(--accent-color);
  color: white;
}

/* Carousel üzerindeki görüntüler için stil */
.carousel-adjacent-images {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8%;
  height: auto;
  opacity: 0.3;
  z-index: 1;
  transition: all 0.3s ease;
}

.carousel-adjacent-left {
  left: 1%;
}

.carousel-adjacent-right {
  right: 1%;
}

/* Footer social links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #fdc134;
  color: #223b51;
  transform: translateY(-3px);
}

/* Footer company info */
.company-info {
  margin-top: 15px;
}

.website-link {
  color: #fdc134;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.website-link:hover {
  color: #fff;
  text-decoration: underline;
}

.kvk-info {
  color: #fff;
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Team Card Styles */
.team-card-alt {
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card-alt:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.team-card-alt:hover .team-color-accent {
  height: 8px;
}

.team-card-alt:hover .team-avatar {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

.team-avatar {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-social a:hover {
  background: #fdc134;
  color: white;
  transform: translateY(-3px);
}

.team-badges span {
  transition: all 0.3s ease;
}

.team-badges span:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.team-social {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Mobile App Cards */
.mobile-cute-row {
  gap: 1.5rem !important;
}

.mobile-cute-card {
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(34,59,81,0.10);
  border: 2.5px solid transparent;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  padding: 22px 18px 18px 18px;
  transition: box-shadow 0.25s, transform 0.22s, border 0.22s;
  margin-bottom: 0;
}

.mobile-cute-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(34,59,81,0.10);
}

.mobile-cute-title {
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 7px;
  color: #223b51;
  letter-spacing: -0.5px;
}

.mobile-cute-desc {
  color: #495057;
  font-size: 0.99rem;
  opacity: 0.92;
}

/* Technology Cards */
.tech-cute-row {
  gap: 1.5rem !important;
}

.tech-cute-card {
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(34,59,81,0.10);
  border: 2.5px solid transparent;
  min-width: 200px;
  max-width: 240px;
  flex: 1 1 180px;
  padding: 22px 16px 18px 16px;
  transition: box-shadow 0.25s, transform 0.22s, border 0.22s;
  margin-bottom: 0;
}

.tech-cute-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  font-size: 1.7rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(34,59,81,0.10);
}

.tech-cute-title {
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: #223b51;
  letter-spacing: -0.5px;
}

.tech-cute-desc {
  color: #495057;
  font-size: 0.97rem;
  opacity: 0.92;
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-adjacent-images {
    display: none;
  }
  .hero section.hero video {
    height: 32vh !important;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .social-links {
    gap: 10px;
  }
  .social-links a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
  }
  .team-body {
    padding: 70px 15px 20px;
  }
  .team-badges span {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  .team-social {
    bottom: 15px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-line {
    width: 60px !important;
    margin-top: 1rem !important;
  }
  .carousel-content-left h2 {
    font-size: 1.3rem !important;
  }
  .carousel-content-left p {
    font-size: 0.9rem !important;
  }
  .badge-container {
    gap: 6px !important;
  }
  .badge-container .badge {
    font-size: 0.75rem !important;
    padding: 3px 6px !important;
  }
  .carousel-navigation-arrows {
    gap: 15px !important;
  }
  .carousel-arrow-btn {
    width: 45px !important;
    height: 45px !important;
  }
}

@media (max-width: 991px) {
  .carousel-image-overlay {
    padding: 18px 10px 14px 10px;
  }
  .carousel-image-overlay h2 {
    font-size: 1.2rem;
  }
  .carousel-image-container {
    flex-direction: column !important;
  }
  .carousel-img-right {
    border-radius: 16px 16px 0 0 !important;
    padding: 20px 0 !important;
  }
  .carousel-content-left {
    padding: 25px !important;
  }
  .carousel-content-left h2 {
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
  }
  .carousel-content-left p {
    font-size: 0.95rem !important;
    margin-bottom: 15px !important;
  }
  .badge-container .badge {
    font-size: 0.8rem !important;
    padding: 4px 8px !important;
  }
  .tech-cute-row {
    flex-wrap: wrap;
  }
  .tech-cute-card {
    flex: 1 1 45%;
    margin-bottom: 18px;
  }
  .mobile-cute-row {
    flex-wrap: wrap;
  }
  .mobile-cute-card {
    flex: 1 1 45%;
    margin-bottom: 18px;
  }
}

@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  .tech-cute-card {
    max-width: 200px;
    min-width: 150px;
    padding: 18px 8px 14px 8px;
  }
  .tech-cute-icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
  .mobile-cute-card {
    max-width: 220px;
    min-width: 140px;
    padding: 16px 8px 12px 8px;
  }
  .mobile-cute-icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .tech-cute-row {
    flex-direction: column;
    gap: 1rem !important;
  }
  .tech-cute-card {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 12px;
  }
  .mobile-cute-row {
    flex-direction: column;
    gap: 1rem !important;
  }
  .mobile-cute-card {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 12px;
  }
}

/* Professional Toast Notification Styles */
.custom-toast {
  position: fixed !important;
  top: 30px !important;
  right: 30px !important;
  bottom: auto !important;
  left: auto !important;
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 360px;
  max-width: 480px;
  z-index: 99999 !important;
  transform: translateX(520px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 !important;
  /* Reset any potential inherited styles */
  float: none !important;
  clear: none !important;
  width: auto !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

.custom-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.custom-toast.success {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border-left: 4px solid #22c55e;
}

.custom-toast.success #toastIcon {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 8px;
  border-radius: 50%;
  font-size: 16px;
}

.custom-toast.error {
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  border-left: 4px solid #ef4444;
}

.custom-toast.error #toastIcon {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 8px;
  border-radius: 50%;
  font-size: 16px;
}

.custom-toast #toastIcon {
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.custom-toast .toast-content {
  flex: 1;
}

.custom-toast .toast-content #toastMessage {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.5;
  margin: 0;
}

.custom-toast .close-btn {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.custom-toast .close-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #6b7280;
  opacity: 1;
}

/* Additional override to ensure toast positioning works correctly */
#customToast.custom-toast {
  position: fixed !important;
  top: 30px !important;
  right: 30px !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 999999 !important;
  margin: 0 !important;
  padding: 20px 24px !important;
}

/* Mobile responsiveness for toast */
@media (max-width: 480px) {
  .custom-toast {
    right: 20px !important;
    left: 20px !important;
    top: 20px !important;
    bottom: auto !important;
    min-width: auto;
    max-width: none;
    transform: translateY(-120px);
  }
  
  .custom-toast.show {
    transform: translateY(0) !important;
  }
}
