/* Custom CSS for project customizations */

/* Move go-top button to left side and fix z-index */
.progress-wrap {
  z-index: 9998 !important;
  left: 20px !important;
  right: auto !important;
}

/* ===========================================
   BLOG STYLES
   =========================================== */

/* Blog Detail Page Title Background */
.page-title .page-title-content.blog-detail-bg {
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.page-title .page-title-content {
  background-image: url(../image/page-title/page-title.webp);
  background-position: bottom;
}

/* Blog Grid Styles - Matching dental-clinic design */
.tf-post-grid.style-3 {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.features-item.style-2 {
  padding: 20px;
}

.tf-post-grid.style-3:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Post Meta - Fixed Layout */
.post-metas.style-3 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-wrap: nowrap;
  overflow: hidden;
}

.post-metas.style-3 .metas-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 15px;
  white-space: nowrap;
  flex-shrink: 0;
  background: white;
  color: #333;
  border: 1px solid #e5e7eb;
}

.post-metas.style-3 .metas-item i {
  font-size: 12px;
  color: #666;
}

/* Category item */
.post-metas.style-3 .category-item {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
}

/* Image Container */
.tf-post-grid.style-3 .image {
  display: block;
  position: relative;
  height: 280px;
  overflow: hidden;
}

.tf-post-grid.style-3 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tf-post-grid.style-3:hover .image img {
  transform: scale(1.1);
}

/* Content Area */
.tf-grid-post-content {
  padding: 20px 20px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Title */
.tf-grid-post-content h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
  flex: 1;
}

.tf-grid-post-content h5 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tf-grid-post-content h5 a:hover {
  color: #0066cc;
}

.tf-btn.style-small.style-bg-border-3:hover {
  background: #0066cc;
  color: white;
  transform: translateX(5px);
}

.tf-btn.style-small.style-bg-border-3 i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.tf-btn.style-small.style-bg-border-3:hover i {
  transform: translateX(3px);
}

/* Excerpt */
.tf-grid-post-content .sub-title {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read More Button */
.tf-btn.style-small.style-bg-border-3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #0066cc;
  color: #0066cc;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 133px;
}

.tf-post-grid.style-3 .tf-grid-post-content .sub-title {
  margin-bottom: 30px;
  font-weight: 400 !important;
}

.tf-btn.hover-bg-yellow-2:hover span {
  color: #fff !important;
}

.tf-btn.hover-bg-yellow-2:hover i {
  color: #fff !important;
}

@media (max-width: 550px) {
  .tf-post-grid.style-3 .tf-grid-post-content {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Newsletter Section */
.section-newsletter {
  background: #f8f9fa;
  padding: 80px 0;
}

.newsletter-box h3 {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
}

.newsletter-box p {
  font-size: 16px;
  color: #666;
}

.newsletter-form .form-group {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control {
  flex: 1;
  border: none;
  padding: 15px 25px;
  background: transparent;
  outline: none;
}

.newsletter-form .tf-btn {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form .tf-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Pagination */
.pagination-wrap {
  margin-top: 50px;
}

.pagination {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 2px solid #dee2e6;
  border-radius: 50%;
  color: #666;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-item.active .page-link,
.page-item .page-link:hover {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  color: white;
  border-color: transparent;
}

/* Blog Responsive */
@media (max-width: 991px) {
  .tf-grid-post-content {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .tf-post-grid.style-3 .image {
    height: 220px;
  }

  .tf-grid-post-content {
    padding: 20px;
  }

  .tf-grid-post-content h5 {
    font-size: 18px;
  }

  .post-metas.style-3 {
    padding: 12px 15px;
    gap: 5px;
  }

  .post-metas.style-3 .metas-item {
    padding: 3px 8px;
    font-size: 11px;
  }

  .post-metas.style-3 .metas-item i {
    font-size: 11px;
  }

  .post-metas.style-3 .category-item {
    max-width: 110px;
  }

  .newsletter-form .form-group {
    flex-direction: column;
    padding: 15px;
  }

  .newsletter-form .tf-btn {
    width: 100%;
  }
}

/* ===========================================
   BLOG DETAIL STYLES
   =========================================== */

/* Blog Details Content */
.blog-details-content {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Article Header */
.article-header {
  padding: 30px 30px 0px;
}

.meta-top {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6c757d;
  align-items: center;
  flex-wrap: wrap;
}

.meta-top .category {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
}

.meta-top span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.meta-top i {
  color: #0066cc;
  font-size: 14px;
}

.article-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  margin-bottom: 20px;
}

/* Featured Image */
.featured-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Article Content */
.article-content {
  padding: 5px 30px 60px 30px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.article-content .lead {
  font-size: 19px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
  font-weight: 400;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.article-content h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 35px 0 20px;
  color: #333;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0 15px;
  color: #333;
}

.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 25px;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content blockquote {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid #0066cc;
  padding: 20px 25px;
  margin: 30px 0;
  font-style: italic;
  border-radius: 5px;
}

.article-content blockquote p {
  font-size: 17px;
  margin-bottom: 10px;
  color: #555;
}

.article-content blockquote cite {
  font-size: 14px;
  color: #999;
  font-style: normal;
}

/* Article Footer */
.article-footer {
  padding: 25px 30px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tags-label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 15px;
  font-size: 12px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag:hover {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  color: white;
  border-color: transparent;
}

/* Share Buttons */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.share-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.share-btn.facebook {
  background: #3b5998;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Related Posts Section */
.related-posts {
  margin-top: 50px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.widget-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

/* Recent Posts Widget */
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.recent-posts-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.post-thumb {
  flex-shrink: 0;
}

.post-thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

.post-content h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
}

.post-content h4 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-content h4 a:hover {
  color: #0066cc;
}

.post-content .date {
  font-size: 12px;
  color: #999;
}

/* CTA Widget */
.widget-cta .cta-box {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: white;
}

.widget-cta h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}

.widget-cta p {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.widget-cta .tf-btn.btn-white {
  background: white;
  color: #0066cc;
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.widget-cta .tf-btn.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Detail Responsive */
@media (max-width: 991px) {
  .article-title {
    font-size: 28px;
  }

  .featured-image {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .article-header {
    padding: 20px;
  }

  .article-title {
    font-size: 24px;
  }

  .article-content {
    padding: 25px 20px;
  }

  .featured-image {
    height: 250px;
  }

  .meta-top {
    gap: 10px;
  }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

/* Color Utilities */
.text-pink {
  color: #e91e63 !important;
}

.text-cyan {
  color: #00bcd4 !important;
}

/* UNIVERSAL Treatment Benefits Styling - Context-based coloring */
/* Hero sections - White text on colored backgrounds */
.hero-swiper .benefit-items,
.hero-swiper .benefit-items span,
.sidebar-banner .benefit-items,
.sidebar-banner .benefit-items span {
  color: #fff !important;
}

/* Treatment detail pages - Dark text on white backgrounds */
.details-content .benefit-items,
.details-content .benefit-items span,
.main-content .benefit-items,
.main-content .benefit-items span {
  color: #333333 !important;
}

.benefit-items i {
  margin-right: 12px;
  font-size: 14px;
  color: var(--primary) !important;
  /* Default color */
}

/* Specific color overrides for different treatment types */
.skin-care-benefits .benefit-items i {
  color: #e91e63 !important;
  /* Pink for skin care */
}

.weight-loss-benefits .benefit-items i {
  color: #00bcd4 !important;
  /* Cyan for weight loss */
}

.sub-title {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #000 !important;
}

/* Continue specific treatment colors */
.dental-treatments-benefits .benefit-items i {
  color: #4caf50 !important;
  /* Green for dental */
}

.eye-treatments-benefits .benefit-items i {
  color: #00acc1 !important;
  /* Light blue for eyes */
}

.obesity-surgery-benefits .benefit-items i {
  color: #673ab7 !important;
  /* Purple for obesity surgery */
}

.physiotherapy-benefits .benefit-items i {
  color: #ff5722 !important;
  /* Orange for physiotherapy */
}

.ivf-treatment-benefits .benefit-items i {
  color: #e91e63 !important;
  /* Pink for IVF treatment */
}

.cardiology-benefits .benefit-items i {
  color: #f44336 !important;
  /* Red for cardiology */
}

.oncology-benefits .benefit-items i {
  color: #9c27b0 !important;
  /* Purple for oncology */
}

.radiology-benefits .benefit-items i {
  color: #607d8b !important;
  /* Blue-grey for radiology */
}

/* Botox template style (most common) */
.botox-benefits .benefit-items i,
.filler-benefits .benefit-items i,
.plastic-surgery-benefits .benefit-items i {
  color: var(--primary) !important;
  /* Default brand color */
}

/* Sidebar Menu Active State for Main Menu Items */
.sidebar-menu .menu-link.current {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%) !important;
  color: white !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  border-left: 4px solid #1565c0 !important;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3) !important;
  transition: all 0.3s ease !important;
}

.sidebar-menu .menu-link.current span,
.sidebar-menu .menu-link.current svg {
  color: white !important;
}

/* Active state hover effect */
.sidebar-menu .menu-link.current:hover {
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4) !important;
  transform: translateY(-1px) !important;
}

/* ===========================================
   LOADING SCREEN FAVICON STYLING
   =========================================== */

/* Loading Favicon - Simetrik ve Sade */
.loading-favicon {
  width: 96px !important;
  height: 96px !important;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px;
  transition: all 0.4s ease;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  animation: faviconPulse 2s ease-in-out infinite alternate;
  position: relative;
}

.tf-post-grid.style-3 .image {
  margin-bottom: 10px;
}

.post-metas.style-3 .metas-item::before {
  display: none;
}

.tf-post-grid.style-3 {
  padding: 10px;
}

/* Favicon Pulse Animation - Sade */
@keyframes faviconPulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Loading Icon Container - Perfect Center */
#loading .icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
  z-index: 10;
}

/* Loading Animation Enhancement */
#loading .wrap-loader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

/* Spinner Circle Animation - Using theme's default spin animation */
#loading .loader {
  width: 120px !important;
  height: 120px !important;
  border: 3px solid transparent;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 3px 0 var(--red);
  /* Animation 'spin' is already defined in styles.css line 7599 */
}

/* Responsive Loading Favicon */
@media (max-width: 768px) {
  .sidebar-banner .tf-btn {
    margin-bottom: 0;
  }

  .sidebar-banner-buttons {
    align-items: center;
    justify-content: center;
  }

  .loading-favicon {
    width: 168px !important;
    height: 168px !important;
    border-radius: 18px;
    padding: 3px;
  }

  #loading .wrap-loader {
    gap: 16px;
  }

  #loading .loader {
    width: 100px !important;
    height: 100px !important;
  }

  @keyframes faviconPulse {
    0% {
      transform: scale(1);
      opacity: 0.9;
    }

    100% {
      transform: scale(1.04);
      opacity: 1;
    }
  }
}

@media (max-width: 480px) {
  .loading-favicon {
    width: 144px !important;
    height: 144px !important;
    border-radius: 16px;
    padding: 2px;
  }

  #loading .wrap-loader {
    gap: 14px;
  }

  #loading .loader {
    width: 80px !important;
    height: 80px !important;
  }

  @keyframes faviconPulse {
    0% {
      transform: scale(1);
      opacity: 0.9;
    }

    100% {
      transform: scale(1.03);
      opacity: 1;
    }
  }
}

/* ===========================================
   Hair Transplant Page Specific Styles
   =========================================== */

/* Override page title background for hair transplant page */
.page-title .page-title-content.hair-transplant-bg {
  background-image: url('../image/plastic-surgery/hair-transplant-main.jpg') !important;
  background-position: center bottom !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/* Enhanced overlay for better text readability on mobile - applies to all page titles */
@media (max-width: 768px) {
  .page-title .page-title-content::before {
    background: linear-gradient(180deg, rgba(12, 23, 26, 0.3) 0%, rgba(12, 23, 26, 0.9) 100%) !important;
  }
}

/* Hair Transplant Process List Styling */
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-list li {
  padding: 12px 0;
  border-left: 3px solid #3b82f6;
  padding-left: 20px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.process-list li:hover {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  border-left-color: #1d4ed8;
}

.process-list li strong {
  color: #1d4ed8;
  font-weight: 600;
}

/* Benefits List Styling */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 8px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.benefits-list li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

/* Modern Sidebar Menu Styles */
.sidebar-menu {
  background: #fefefe;
  border-radius: 20px;
  padding: 32px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 10px 40px rgba(0, 0, 0, 0.08);
  border: none;
}

.sidebar-menu .title-content {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  padding-bottom: 16px;
  border-bottom: 1px solid #e1e5e9;
  position: relative;
}

.footer .bottom .copyright-text {
  gap: 3px;
}


.sidebar-menu .title-content::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 1px;
}

.sidebar-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 28px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #e1e5e9;
  position: relative;
  letter-spacing: 0;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 1px;
}

.treatment-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-menu .menu-item {
  border-radius: 7px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  border: 1px solid #e3e3e3;
}

.sidebar-menu .menu-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Modern Menu Toggle Button */
.sidebar-menu .menu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: #334155;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-menu .menu-toggle:hover {
  color: #1e293b;
  background: #f8fafc;
}

.sidebar-menu .menu-toggle[aria-expanded="true"] {
  color: #3b82f6;
  background: #eff6ff;
}

.sidebar-menu .menu-toggle .chevron {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  flex-shrink: 0;
  color: #94a3b8;
}

.sidebar-menu .menu-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
  color: #3b82f6;
}

.sidebar-menu .menu-toggle:hover .chevron {
  color: #64748b;
}

/* Modern Menu Link (Single Items) */
.sidebar-menu .menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  background: transparent;
  border: none;
  color: #334155;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sidebar-menu .menu-link:hover {
  color: #1e293b;
  background: #f8fafc;
}

.sidebar-menu .menu-link svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: all 0.3s ease;
  color: #94a3b8;
}

.sidebar-menu .menu-link:hover svg {
  opacity: 1;
  color: #64748b;
  transform: translateX(2px);
}

/* Modern Submenu Container */
.sidebar-menu .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.sidebar-menu .submenu.active {
  max-height: 700px;
}

/* Modern Submenu Links */
.sidebar-menu .submenu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 32px;
  color: #64748b;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar-menu .submenu-link::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.sidebar-menu .submenu-link:hover {
  color: #1e293b;
  background: #ffffff;
  padding-left: 36px;
}

.sidebar-menu .submenu-link:hover::before {
  border-color: #3b82f6;
  background: #3b82f6;
  transform: translateY(-50%) scale(1.2);
}

.sidebar-menu .submenu-link.current {
  color: #3b82f6;
  background: #ffffff;
  font-weight: 600;
  box-shadow: inset 4px 0 0 #3b82f6;
}

.sidebar-menu .submenu-link.current::before {
  border-color: #3b82f6;
  background: #3b82f6;
  transform: translateY(-50%) scale(1.3);
}

.sidebar-menu .link-bullet {
  display: none;
}

/* Smooth Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sidebar-menu .submenu.active .submenu-link {
  animation: slideUp 0.3s ease;
}

.sidebar-menu .submenu.active .submenu-link:nth-child(1) {
  animation-delay: 0.05s;
}

.sidebar-menu .submenu.active .submenu-link:nth-child(2) {
  animation-delay: 0.1s;
}

.sidebar-menu .submenu.active .submenu-link:nth-child(3) {
  animation-delay: 0.15s;
}

.sidebar-menu .submenu.active .submenu-link:nth-child(4) {
  animation-delay: 0.2s;
}

.sidebar-menu .submenu.active .submenu-link:nth-child(5) {
  animation-delay: 0.25s;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .sidebar-menu {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .sidebar-menu {
    padding: 24px;
    border-radius: 16px;
  }

  .page-title .page-title-content .title {
    margin-bottom: 0;
    letter-spacing: 0px;
    font-size: 25px;
  }

  .sidebar-title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .menu-toggle,
  .menu-link {
    padding: 16px 18px;
    font-size: 14px;
  }

  .submenu-link {
    padding: 12px 18px 12px 28px;
    font-size: 13px;
  }

  .submenu-link:hover {
    padding-left: 32px;
  }

  .treatment-nav {
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .sidebar-menu {
    padding: 20px;
  }

  .sidebar-title {
    font-size: 16px;
  }

  .menu-toggle,
  .menu-link {
    padding: 14px 16px;
    font-size: 13px;
  }
}

/* Hair Transplant Process Steps */
.process-steps .step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.process-steps .step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.process-steps .step-content {
  flex: 1;
}

.process-steps .step-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
}

.process-steps .step-desc {
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* Advantages List */
.advantages-list .advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.advantages-list .advantage-item i {
  flex-shrink: 0;
  margin-top: 2px;
}

.advantages-list .advantage-item span {
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-steps .step-item {
    gap: 15px;
  }

  .process-steps .step-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .process-steps .step-title {
    font-size: 15px;
  }
}

/* Hero Section Video Styles */
.box-image {
  min-height: 550px;
  overflow: hidden;
  border-radius: 20px;
}

.box-image .video-container {
  position: relative;
  width: 100%;
  height: 550px;
  min-height: 550px;
  pointer-events: none;
  overflow: hidden;
}

.box-image .video-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.box-image .video-container iframe,
.box-image .video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  object-fit: cover;
}

.logo-megamenu img {
  max-width: 280px;
}

@media (max-width: 768px) {
  .box-image {
    min-height: 350px;
  }

  .box-image .video-container {
    height: 350px !important;
    min-height: 350px;
  }

  .box-image .video-container iframe,
  .box-image .video-container video {
    width: 100% !important;
    height: 100% !important;
  }
}

@media (max-width: 480px) {
  .box-image {
    min-height: 280px;
  }

  .box-image .video-container {
    height: 280px !important;
    min-height: 280px;
  }

  .box-image .video-container iframe,
  .box-image .video-container video {
    width: 100% !important;
    height: 100% !important;
  }
}

/* Consultation Form Styles */
.consultation-form .consultation-form-wrapper {
  margin-top: 25px;
}

.consultation-form .form-group {
  margin-bottom: 12px;
}

/* Ensure consistent spacing for all form elements */
.consultation-form .form-group:last-of-type {
  margin-bottom: 0;
}

.consultation-form .consultation-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.consultation-form .consultation-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.consultation-form .consultation-input:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.consultation-form .consultation-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.consultation-form select.consultation-input {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  padding-right: 45px;
}

.consultation-form select.consultation-input option {
  background: #2c5f8d;
  color: #fff;
  padding: 10px;
}

.consultation-form .btn-bottom {
  margin-top: 20px;
}

.top-bar .top-bar-inner {
  padding: 0;
}

.header .header-content {
  padding: 11px 3px 11px 41px;
}

.consultation-form .tf-btn.w-100 {
  width: 100%;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 14px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.consultation-form .tf-btn.w-100:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 1);
  color: #2c5f8d;
}

.consultation-form .tf-btn.w-100:hover span {
  color: #2c5f8d;
}

.consultation-form .tf-btn.w-100:hover i {
  color: #2c5f8d;
}

/* Form Grid Layout */
.consultation-form .form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.consultation-form .form-row .form-col {
  flex: 1;
  margin-bottom: 0;
}

/* Textarea Styles */
.consultation-form .consultation-textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 150px;
  line-height: 1.5;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: inherit;
}


.consultation-form .consultation-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.menu-primary-menu {
  gap: 30px;
}

/* Header Logo Size */
.header .logo img {
  max-height: 74px;
  max-width: 300px;
  width: auto;
  padding: 5px;
}

/* Tablet responsive for consultation form */
@media (max-width: 1024px) and (min-width: 769px) {
  .consultation-form .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .consultation-form .form-row .form-col {
    margin-bottom: 0;
    /* Remove double margin */
  }

  .consultation-form .btn-bottom {
    margin-top: 18px;
    /* Consistent with mobile */
  }
}

@media (max-width: 768px) {

  .header .logo img {
    max-height: 57px;
    padding: 5px;
  }

  .header .header-content {
    padding: 10px;
  }

  .consultation-form .consultation-form-wrapper {
    margin-top: 20px;
  }

  .consultation-form .form-group {
    margin-bottom: 12px;
  }

  .consultation-form .consultation-input {
    padding: 10px 15px;
    font-size: 13px;
  }

  .consultation-form .form-row {
    flex-direction: column;
    gap: 12px;
    /* Consistent spacing */
  }

  .consultation-form .form-row .form-col {
    margin-bottom: 0;
    /* Remove double margin - use gap instead */
  }

  .consultation-form .btn-bottom {
    margin-top: 18px;
    /* Adjusted for mobile */
  }
}



/* Fix problematic header spacing */
@media (min-width: 1700px) {
  .header .main-menu {
    padding-left: 60px !important;
  }
}


@media (max-width: 1500px) {
  .sw-department.sw-grid .swiper-slide {
    padding: 12px 10px;
  }
}

@media (max-width: 1700px) and (min-width: 1149px) {

  .nav-btn,
  .nav-icon {
    display: none;
  }
}

@media (max-width: 1149px) {
  .logo-header {
    max-width: fit-content !important;
  }
}

/* Tema Renkli TopBar */
.modern-slim-topbar {
  background: var(--white);
  padding: 5px 0;
  font-size: 15px;
}

.modern-slim-topbar .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Center Section - Welcome Text */
.modern-slim-topbar .welcome-text {
  color: var(--color-paragraph);
  font-weight: 500;
  font-size: 17px;
  text-align: center;
}

/* Left Section - Contact Group */
.modern-slim-topbar .contact-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modern-slim-topbar .contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-title);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 5px;
}

.modern-slim-topbar .contact-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contact icons styling */
.modern-slim-topbar .contact-link i {
  font-size: 15px;
  transition: all 0.3s ease;
}

/* Phone icon - Blue */
.modern-slim-topbar .contact-link:nth-child(1) i {
  color: #2563eb;
}

.modern-slim-topbar .contact-link:nth-child(1):hover {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
}

.modern-slim-topbar .contact-link:nth-child(1):hover i {
  color: white;
}

/* Email icon - Red */
.modern-slim-topbar .contact-link:nth-child(3) i {
  color: #dc2626;
}

.modern-slim-topbar .contact-link:nth-child(3):hover {
  background: #dc2626;
  border-color: #dc2626;
  color: white;
}

.modern-slim-topbar .contact-link:nth-child(3):hover i {
  color: white;
}

/* WhatsApp icon - Green */
.modern-slim-topbar .contact-link:nth-child(5) i {
  color: #25d366;
}

.modern-slim-topbar .contact-link:nth-child(5):hover {
  background: #25d366;
  border-color: #25d366;
  color: white;
}

.modern-slim-topbar .contact-link:nth-child(5):hover i {
  color: white;
}

.modern-slim-topbar .separator {
  color: var(--border);
  font-weight: 300;
}

/* Right Section */
.modern-slim-topbar .social-group {
  display: flex;
  gap: 8px;
}

.modern-slim-topbar .social-icon {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.modern-slim-topbar .social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 0;
}

/* Default backgrounds for each social icon */
.modern-slim-topbar .social-icon:nth-child(1)::before {
  background: #1877f2;
}

.modern-slim-topbar .social-icon:nth-child(2)::before {
  background: #0077b5;
}

.modern-slim-topbar .social-icon:nth-child(3)::before {
  background: #ff0000;
}

.modern-slim-topbar .social-icon:nth-child(4)::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.modern-slim-topbar .social-icon:nth-child(5)::before {
  background: #000000;
}

.modern-slim-topbar .social-icon:nth-child(6)::before {
  background: #00b67a;
}

/* Social icons styling - White icons by default */
.modern-slim-topbar .social-icon i {
  color: white;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Hover effects - Scale animation */
.modern-slim-topbar .social-icon:hover::before {
  transform: scale(1.1);
}

.modern-slim-topbar .social-icon:hover i {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .modern-slim-topbar .contact-group {
    gap: 12px;
  }
}

@media (max-width: 992px) {
  .modern-slim-topbar .welcome-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .modern-slim-topbar .top-bar-inner {
    justify-content: space-between;
    padding: 0 15px;
  }

  .modern-slim-topbar .tf-tb-left {
    flex: 0 0 auto;
  }

  .modern-slim-topbar .tf-tb-left .contact-group {
    gap: 0;
  }

  .modern-slim-topbar .tf-tb-left .contact-link:nth-child(3),
  .modern-slim-topbar .tf-tb-left .contact-link:nth-child(5),
  .modern-slim-topbar .tf-tb-left .separator {
    display: none;
  }

  .modern-slim-topbar .tf-tb-center {
    display: none;
  }

  .modern-slim-topbar .tf-tb-right {
    flex: 0 0 auto;
  }

  .modern-slim-topbar .contact-link {
    padding: 8px 12px;
    border-radius: 5px;
  }

  .mobile-nav-wrap .logo-mobile {
    max-width: 213px;
  }

  .modern-slim-topbar .social-group {
    gap: 5px;
  }

  .modern-slim-topbar .social-icon {
    width: 34px;
    height: 34px;
  }

  .modern-slim-topbar .social-icon i {
    font-size: 15px;
  }
}

/* =================
   PROFESSIONAL HERO SLIDER
   ================= */

/* Hero Slider Container - Override problematic box-page-title styles */
.hero-slider-container.box-page-title {
  max-width: 66.4% !important;
  width: 100% !important;
  padding: 0 !important;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  position: relative;
  min-height: 520px;
  /* Small Desktop varsayılan */
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Ultra-Wide Ekranlar için Min-Height */
@media (min-width: 1441px) {
  .hero-slider-container.box-page-title {
    min-height: 620px;
    /* Ultra-wide için optimize */
  }

  .hero-swiper {
    min-height: 620px;
  }

  .hero-swiper .swiper-slide {
    min-height: 620px;
  }
}

/* Hero Swiper Container */
.hero-swiper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  /* Touch and scroll behavior fix */
  touch-action: pan-y pinch-zoom;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Fix for swiper wrapper */
.hero-swiper .swiper-wrapper {
  touch-action: pan-y pinch-zoom;
  transform-style: preserve-3d;
}

/* Grab cursor styling */
.hero-swiper.swiper-grab {
  cursor: grab;
}

.hero-swiper.swiper-grabbing {
  cursor: grabbing;
}

/* Professional Slide Styling */
.hero-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  background: transparent;
  overflow: hidden;
  padding: 21px 41px;
}

/* Different backgrounds for each slide - Fixed for Swiper loop */
.hero-swiper .hero-slide-1,
.hero-swiper .swiper-slide[data-slide="1"] {
  background:
    linear-gradient(135deg, rgba(16, 44, 72, 0.8) 0%, rgba(21, 101, 192, 0.8) 50%, rgba(16, 44, 72, 0.8) 100%),
    url('/image/hero/slider1.webp') center/cover;
}

.hero-swiper .hero-slide-2,
.hero-swiper .swiper-slide[data-slide="2"] {
  background:
    linear-gradient(135deg, rgba(26, 32, 44, 0.8) 0%, rgba(45, 55, 72, 0.8) 50%, rgba(26, 32, 44, 0.8) 100%),
    url('/image/hero/slider2.jpeg') top/cover;
}

.hero-swiper .hero-slide-3,
.hero-swiper .swiper-slide[data-slide="3"] {
  background:
    linear-gradient(135deg, rgba(75, 23, 140, 0.8) 0%, rgba(95, 39, 205, 0.8) 50%, rgba(75, 23, 140, 0.8) 100%),
    url('/image/hero/slider3.webp') center/cover;
}

/* Override problematic heading styles */
.hero-swiper .heading {
  position: absolute !important;
  top: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 1 !important;
  opacity: 0.08 !important;
  pointer-events: none !important;
}

.hero-swiper .heading .title {
  font-size: 140px !important;
  line-height: 120px !important;
  font-weight: 900 !important;
  color: rgba(255, 255, 255, 0.1) !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  letter-spacing: -4px !important;
}

/* Override box-page-title-content layout */
.hero-swiper .swiper-slide .box-page-title-content {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  z-index: 2 !important;
  gap: 60px !important;
}

/* Professional Left Content */
.hero-swiper .left-box {
  flex: 1;
  max-width: 500px;
  position: relative !important;
  z-index: 5 !important;
}

/* =================
   ENHANCED HERO SWIPER TYPOGRAPHY
   ================= */

/* Ultra-Wide Ekranlar için Ana Typography */
@media (min-width: 1441px) {
  .hero-swiper .title-2 {
    font-size: 50px !important;
    line-height: 56px !important;
    font-weight: 700 !important;
    letter-spacing: -1px !important;
  }

  .hero-swiper .text {
    font-size: 18px !important;
    line-height: 28px !important;
  }

  .hero-swiper .benefit-items {
    font-size: 16px !important;
    padding: 12px 18px !important;
  }
}

/* Desktop/Laptop Typography (varsayılan) */
.hero-swiper .title-2 {
  font-size: 48px !important;
  line-height: 52px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  margin-bottom: 26px !important;
  padding: 0 !important;
  border: none !important;
  letter-spacing: -0.8px !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* Trustpilot Widget Styling */
.trustpilot-widget {
  display: block !important;
  text-decoration: none !important;
  margin: 20px 0 25px 0;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(15px) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  width: 100% !important;
  max-width: 460px !important;
}

.trustpilot-widget:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(0, 182, 122, 0.2) !important;
}

.trustpilot-content {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

.trustpilot-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.trustpilot-logo-img {
  width: 85px !important;
  height: auto !important;
  max-height: 22px !important;
  filter: brightness(1) !important;
}

.trustpilot-rating {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 4px !important;
}

.trustpilot-rating .stars {
  display: flex !important;
  align-items: center !important;
}

.stars-img {
  width: 75px !important;
  height: auto !important;
  max-height: 16px !important;
}

.trustpilot-rating .rating-text {
  color: var(--white) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.trustpilot-rating .review-count {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
}

/* Professional Right Content */
.hero-swiper .right-box {
  flex: 1;
  max-width: 480px;
  position: relative !important;
  z-index: 5 !important;
}

/* Enhanced Description Text */
.hero-swiper .text {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 16px !important;
  line-height: 26px !important;
  margin-bottom: 30px !important;
  font-weight: 300 !important;
  letter-spacing: 0.1px !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  -webkit-font-smoothing: antialiased;
  max-width: 480px !important;
}

/* Enhanced Benefit List */
.hero-swiper .benefit-list {
  margin-bottom: 2px !important;
}

.hero-swiper .benefit-items {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 10px !important;
  color: var(--white) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 8px !important;
  padding: 10px 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.1px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  line-height: 1.4 !important;
}

.hero-swiper .benefit-items:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-0.5px) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.hero-swiper .benefit-items i {
  color: #5eb3f5 !important;
  margin-right: 12px !important;
  font-size: 16px !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* Hide image item since we use background */
.hero-swiper .img-item {
  display: none !important;
}

/* Refined Professional Button Styling */
.hero-swiper .tf-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 28px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  letter-spacing: 0.2px !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  margin-top: 20px !important;
  min-width: 180px !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-swiper .tf-btn:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  color: #2c5f8d !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
  text-shadow: none !important;
}

.hero-swiper .tf-btn:hover span {
  color: #2c5f8d !important;
}

.hero-swiper .tf-btn:hover i {
  color: #2c5f8d !important;
}

/* Minimal Modern Pagination */
.hero-pagination {
  position: absolute !important;
  bottom: 15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;

  background: rgba(255, 255, 255, 0.15) !important;
  padding: 7px 15px !important;
  border-radius: 50px !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;

  width: auto !important;
  height: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 13px !important;
  height: 13px !important;
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  margin: 0 !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  border: 2px solid transparent !important;
}

.hero-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  transform: scale(1.15) !important;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--white) !important;
  transform: scale(1.25) !important;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Laptop Specific Typography (1200px - 1440px) */
@media (min-width: 1200px) and (max-width: 1440px) {
  .hero-slider-container.box-page-title {
    min-height: 560px;
    /* Laptop için optimize */
  }

  .hero-swiper {
    min-height: 560px;
  }

  .hero-swiper .swiper-slide {
    padding: 40px 45px 50px 45px;
    min-height: 560px;
  }

  .hero-swiper .swiper-slide .box-page-title-content {
    gap: 40px !important;
  }

  .hero-swiper .title-2 {
    font-size: 44px !important;
    /* Laptop için ideal */
    line-height: 50px !important;
    margin-bottom: 22px !important;
    font-weight: 700 !important;
  }

  .hero-swiper .text {
    font-size: 16px !important;
    line-height: 26px !important;
    margin-bottom: 26px !important;
  }

  .hero-swiper .benefit-items {
    font-size: 15px !important;
    padding: 10px 16px !important;
  }
}

/* Small Desktop Typography (max-width: 1199px) */
@media (max-width: 1199px) {
  .hero-swiper .swiper-slide {
    padding: 35px 40px 45px 40px;
  }

  .hero-swiper .swiper-slide .box-page-title-content {
    gap: 35px !important;
  }

  .hero-swiper .title-2 {
    font-size: 42px !important;
    line-height: 48px !important;
    margin-bottom: 22px !important;
    font-weight: 700 !important;
  }

  .hero-swiper .text {
    font-size: 15px !important;
    line-height: 25px !important;
    margin-bottom: 26px !important;
  }

  .hero-swiper .benefit-items {
    font-size: 14px !important;
    padding: 9px 14px !important;
  }
}

@media (max-width: 1024px) {
  .hero-slider-container.box-page-title {
    max-width: 100% !important;
    min-height: 480px;
    /* Tablet için optimize */
  }

  .hero-swiper {
    min-height: 480px;
  }

  .hero-swiper .swiper-slide {
    padding: 35px 35px 45px 35px;
    min-height: 480px;
  }

  .hero-swiper .swiper-slide .box-page-title-content {
    flex-direction: column !important;
    text-align: center !important;
    gap: 30px !important;
  }

  .hero-swiper .left-box,
  .hero-swiper .right-box {
    max-width: 100% !important;
  }

  /* Refined Tablet Typography */
  .hero-swiper .title-2 {
    font-size: 40px !important;
    line-height: 46px !important;
    margin-bottom: 22px !important;
    letter-spacing: -0.6px !important;
    font-weight: 500 !important;
  }

  .hero-swiper .text {
    font-size: 15px !important;
    line-height: 25px !important;
    margin-bottom: 26px !important;
    max-width: 100% !important;
  }

  .hero-swiper .benefit-items {
    font-size: 14px !important;
    padding: 10px 14px !important;
    margin-bottom: 8px !important;
  }

  .hero-swiper .tf-btn {
    font-size: 14px !important;
    padding: 13px 24px !important;
    min-width: 160px !important;
  }

  /* Trustpilot responsive */
  .trustpilot-widget {
    display: block !important;
    margin: 15px auto 20px auto !important;
    padding: 14px 20px !important;
    max-width: 200px !important;
    width: 100% !important;
  }

  .trustpilot-content {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }

  .trustpilot-logo {
    justify-content: center !important;
  }

  .trustpilot-rating {
    align-items: center !important;
  }

  .trustpilot-logo-img {
    width: 85px !important;
    max-height: 22px !important;
  }

  .stars-img {
    width: 80px !important;
    max-height: 16px !important;
  }

  .trustpilot-rating .rating-text {
    font-size: 14px !important;
  }

  .trustpilot-rating .review-count {
    font-size: 12px !important;
  }
}

/* =================
   SERVICES SHOWCASE SECTION
   ================= */

.box-banner.box-2 .text,
.tf-btn.style-border.border-color-black-2 span,
.tf-btn.style-border.border-color-black-2 i {
  color: var(--gray-1);
}

/* Services Showcase Styles */
.services-showcase {
  position: relative;
}

.wg-year-ex .img-item {
  position: absolute;
  top: 30px;
  right: 30px;
  max-width: 50px;
}

/* Override pink background color with dark blue */
.box-banner.box-2.services-showcase {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1a365d 100%) !important;
}

/* Fast Marquee Animation */
.services-marquee .marquee-wrapper {
  animation-duration: 7.5s;
}

/* Service Item Styling */
.service-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  white-space: nowrap !important;
}

.service-item i {
  color: var(--primary) !important;
  font-size: 18px !important;
  min-width: 20px !important;
}

/* Service Separator Styling */
.service-separator {
  color: var(--primary) !important;
  font-size: 24px !important;
  font-weight: bold !important;
  opacity: 0.7 !important;
  margin: 0 15px !important;
}

/* Services CTA Styling */
.services-cta .tf-btn {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
  transition: all 0.3s ease !important;
}

.services-cta .tf-btn:hover {
  background: rgba(52, 152, 219, 0.9) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 768px) {
  .hero-slider-container.box-page-title {
    max-width: 100% !important;
    min-height: 450px !important;
    /* Mobile için optimize */
    border-radius: 16px !important;
  }

  .hero-swiper {
    min-height: 450px !important;
  }

  .hero-swiper .swiper-slide {
    min-height: 450px !important;
    padding: 30px 25px 40px 25px;
  }

  .hero-swiper .heading .title {
    font-size: 100px !important;
    line-height: 80px !important;
  }

  /* Refined Mobile Typography - 768px */
  .hero-swiper .title-2 {
    font-size: 32px !important;
    line-height: 38px !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.4px !important;
    font-weight: 500 !important;
  }

  .hero-swiper .text {
    font-size: 14px !important;
    line-height: 22px !important;
    margin-bottom: 22px !important;
  }

  .hero-swiper .benefit-items {
    font-size: 13px !important;
    padding: 8px 12px !important;
    margin-bottom: 6px !important;
  }

  .hero-swiper .benefit-items i {
    font-size: 14px !important;
    margin-right: 10px !important;
  }

  .hero-swiper .tf-btn {
    font-size: 13px !important;
    padding: 12px 20px !important;
    min-width: 140px !important;
    margin-bottom: 16px !important;
  }

  .hero-pagination {
    bottom: 5px !important;
    padding: 6px 13px !important;
    gap: 13px !important;
  }

  .hero-pagination .swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
  }
}

@media (max-width: 480px) {
  .hero-slider-container.box-page-title {
    min-height: 420px !important;
    /* Small Mobile için optimize */
  }

  .hero-swiper {
    min-height: 420px !important;
  }

  .hero-swiper .swiper-slide {
    min-height: 420px !important;
    padding: 25px 18px 35px 18px;
  }

  .hero-swiper .swiper-slide .box-page-title-content {
    gap: 25px !important;
  }

  .hero-swiper .heading .title {
    font-size: 70px !important;
    line-height: 60px !important;
  }

  .hero-swiper .title-2 {
    font-size: 28px !important;
    line-height: 34px !important;
    font-weight: 500 !important;
    letter-spacing: -0.2px !important;
  }

  .hero-pagination {
    bottom: 5px !important;
    padding: 6px 13px !important;
    gap: 13px !important;
  }

  .hero-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
  }
}

/* =================
   FOOTER TESTIMONIALS WIDGET
   ================= */

/* Main Container */
.footer-testimonials-widget {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  margin: 0;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Header Section */
.footer-testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonials-title-section {
  display: flex;
  align-items: center;
}

.footer-testimonials-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Trustpilot Section */
.footer-trustpilot-section {
  margin-top: 15px;
  text-align: center;
}

.footer-trustpilot-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.footer-trustpilot-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-trustpilot-link img {
  height: 16px;
  width: auto;
  max-width: 85px;
}

.footer-trustpilot-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.footer-rating-stars {
  display: flex;
  gap: 2px;
}

.footer-rating-stars i {
  color: #ffd700;
  font-size: 14px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.footer-rating-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.footer-review-count {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
}

/* Swiper Container */
.footer-testimonials-swiper {
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}

/* Individual Testimonial Cards */
.footer-testimonial-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
  height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.footer-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-testimonial-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Patient Header */
.footer-patient-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  min-height: 40px;
}

.footer-patient-avatar {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-avatar-initials {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-patient-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-height: 40px;
}

.footer-patient-name {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.footer-patient-location {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  display: block;
  font-weight: 500;
  line-height: 1.2;
}

.footer-mini-rating {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}

.footer-mini-rating i {
  color: #ffd700;
  font-size: 10px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

/* Review Text */
.footer-testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  flex: 1;
  font-weight: 400;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.1px;
}

/* Pagination */
.footer-testimonials-pagination {
  position: static !important;
  margin-top: 18px;
  text-align: center;
}

.footer-testimonials-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  margin: 0 4px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: 1px solid transparent !important;
}

.footer-testimonials-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.7) !important;
  transform: scale(1.1) !important;
}

.footer-testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--white) !important;
  transform: scale(1.2) !important;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-testimonial-card {
    height: 210px;
    padding: 17px;
  }

  .footer-testimonials-title {
    font-size: 18px;
  }

  .footer-trustpilot-link img {
    height: 17px;
    max-width: 90px;
  }
}

@media (max-width: 768px) {
  .footer-testimonials-widget {
    padding: 24px;
    border-radius: 20px;
  }

  .footer-testimonials-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .testimonials-title-section {
    flex: 1;
  }

  .footer-testimonials-title {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .footer-trustpilot-rating {
    align-items: flex-end;
    gap: 3px;
    text-align: right;
    flex-shrink: 0;
  }

  .footer-rating-stars {
    gap: 1px;
    margin-bottom: 2px;
  }

  .footer-rating-stars i {
    font-size: 12px;
  }

  .footer-rating-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
  }

  .footer-rating-text {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
  }

  .footer-review-count {
    font-size: 11px;
    margin: 0;
    opacity: 0.9;
  }

  .footer-testimonial-card {
    height: 200px;
    padding: 16px;
  }

  .footer-testimonials-title {
    font-size: 17px;
  }

  .footer-patient-name {
    font-size: 13px;
  }

  .footer-testimonial-text {
    font-size: 12px;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }

  .footer-avatar-initials {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .footer-trustpilot-link img {
    height: 15px;
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .footer-testimonials-widget {
    padding: 20px;
  }

  .footer-testimonials-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .footer-testimonials-title {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .footer-rating-stars {
    margin-bottom: 2px;
  }

  .footer-rating-stars i {
    font-size: 11px;
  }

  .footer-rating-info {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .footer-rating-text {
    font-size: 11px;
    font-weight: 600;
    margin: 0;
  }

  .footer-review-count {
    font-size: 10px;
    margin: 0;
    opacity: 0.9;
  }

  .footer-testimonial-card {
    height: 190px;
    padding: 15px;
  }

  .footer-trustpilot-link {
    font-size: 12px;
    padding: 8px 16px;
  }

  .footer-trustpilot-link img {
    height: 18px;
    max-width: 75px;
  }
}


/* =================
   GLOBAL OFFICES FOOTER SECTION
   ================= */

.footer-contact-section {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px 0;
  margin-top: 30px;
}

/* Header */
.global-offices-header-section {
  text-align: center;
  margin-bottom: 30px;
}

.contact-title {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.global-offices-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  font-style: italic;
}

/* Grid Layout */
.global-offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 0;
}

/* Office Cards */
.global-office-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.global-office-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.office-card-header {
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.flag-badge {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
  line-height: 1;
}

.office-card-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px 0;
  letter-spacing: -0.1px;
}

.office-country {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  display: block;
}

/* Card Details */
.office-card-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.company-name-footer {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  margin: 8px 0 0 0;
  text-align: left;
  padding: 0;
  border: none;
  text-align: center;
}

.office-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.4;
}

.office-contact-item i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.office-contact-item a,
.office-contact-item span {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  flex: 1;
}

.office-contact-item a:hover {
  color: var(--white);
  text-decoration: none;
}

/* Desktop/Mobile Display Control */
.desktop-grid {
  display: grid;
}

.mobile-only {
  display: none;
}

/* Mobile Swiper Styles */
.global-offices-mobile-swiper {
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
}

.global-offices-mobile-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.global-offices-mobile-swiper .global-office-card {
  width: 100%;
  min-height: 320px;
}

.global-offices-mobile-pagination {
  position: static !important;
  margin-top: 15px;
  text-align: center;
}

.global-offices-mobile-pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  margin: 0 4px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.global-offices-mobile-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.7) !important;
  transform: scale(1.1) !important;
}

.global-offices-mobile-pagination .swiper-pagination-bullet-active {
  background: var(--white) !important;
  transform: scale(1.2) !important;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .global-offices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-contact-section {
    padding: 30px 0;
    margin-top: 25px;
  }

  .contact-title {
    font-size: 22px;
  }

  .global-offices-subtitle {
    font-size: 14px;
  }

  /* Hide desktop grid, show mobile swiper */
  .desktop-grid {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .global-office-card {
    padding: 20px;
    margin: 0 5px;
  }

  .flag-badge {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .office-card-title {
    font-size: 16px;
  }

  .office-country {
    font-size: 13px;
  }

  .company-name-footer {
    font-size: 15px;
  }

  .office-contact-item {
    font-size: 15px;
  }

  .office-contact-item i {
    font-size: 15px;
    width: 16px;
  }
}

@media (max-width: 480px) {
  .footer-contact-section {
    padding: 25px 0;
  }

  .contact-title {
    font-size: 20px;
  }

  .global-offices-subtitle {
    font-size: 13px;
  }

  .global-office-card {
    padding: 18px;
  }

  .flag-badge {
    font-size: 24px;
  }

  .office-card-title {
    font-size: 15px;
  }

  .office-country {
    font-size: 12px;
  }

  .company-name-footer {
    font-size: 15px;
  }

  .office-contact-item {
    font-size: 15px;
  }

  .office-contact-item i {
    font-size: 15px;
    width: 16px;
  }
}

/* =================
   PAGE TITLE OPTIMIZATIONS
   ================= */

/* Desktop Page Title Styles - Reduced padding as requested */
@media (min-width: 992px) {
  .page-title .page-title-content {
    padding: 115px 65px;
    /* Reduced from 230px 130px by half */
  }


  /* Optimize title font size for desktop */
  .page-title .page-title-content .title {
    font-size: 42px !important;
    line-height: 48px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.5px !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  /* Optimize breadcrumb styling for desktop */
  .page-title .breadkcum {
    margin-top: 12px;
  }

  .page-title .breadkcum a,
  .page-title .breadkcum h3 {
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 24px !important;
    opacity: 0.9;
  }

  .page-title .breadkcum .dot {
    width: 4px;
    height: 4px;
    opacity: 0.7;
  }
}

@media (min-width: 991px) and (max-width: 1200px) {
  .tf-tb-center {
    display: none;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
  .page-title .page-title-content {
    padding: 100px 40px;
  }

  .page-title .page-title-content .title {
    font-size: 36px !important;
    line-height: 42px !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.3px !important;
  }

  .page-title .breadkcum a,
  .page-title .breadkcum h3 {
    font-size: 14px !important;
    line-height: 22px !important;
  }
}

@media (max-width: 768px) {
  .page-title.style-2 .title {
    margin-bottom: 5px;
    font-size: 27px;
    letter-spacing: 0;
  }

  .breadkcum a,
  .breadkcum h3 {
    color: var(--white);
    font-size: 13px;
    line-height: 21px;
  }

  .page-title .page-title-content {
    padding: 80px 13px;
  }

  .modern-slim-topbar {
    font-size: 12px;
  }

  .modern-slim-topbar .contact-group {
    gap: 10px;
  }

  .modern-slim-topbar .social-icon {
    width: 26px;
    height: 26px;
  }

  .modern-slim-topbar .social-icon i {
    font-size: 12px;
  }

  /* Hide services showcase on mobile */
  .box-banner.box-2.services-showcase {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .modern-slim-topbar .contact-group {
    flex-direction: column;
    gap: 4px;
  }

  .modern-slim-topbar .separator {
    display: none;
  }
}

@media (max-width: 1361px) {
  .menu-primary-menu {
    gap: 11px;
  }

  .header.style-color-black-2 .menu-item .item-link {
    line-height: 30px;
    font-size: 16px;
  }

  .header .main-menu {
    padding-left: 13px;
  }
}

/* About Section Logo Sizing */
.wg-year-ex .img-item img {
  max-width: 60px !important;
  max-height: 60px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Hero Slider Loop Fix */
.hero-swiper .swiper-slide-duplicate {
  opacity: 1 !important;
}

/* =================
   PLASTIC SURGERY IMAGE HEIGHT FIX
   ================= */

/* Sadece görsellerin yüksekliğini eşitle */
.plastic-surgery-grid .top-item .image {
  height: 380px;
  overflow: hidden;
}

.plastic-surgery-grid .top-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =================
   PLASTIC SURGERY FAQ STYLING
   ================= */

.plastic-surgery-faq {
  background: #f8fafc;
}

.plastic-surgery-faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.plastic-surgery-faq .faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.plastic-surgery-faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plastic-surgery-faq .faq-question:hover {
  background: #f8fafc;
}

.plastic-surgery-faq .faq-question h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.plastic-surgery-faq .faq-question i {
  font-size: 20px;
  color: #667eea;
  transition: transform 0.3s ease;
}

.plastic-surgery-faq .faq-answer {
  padding: 0 24px 24px;
  color: #4a5568;
  line-height: 1.6;
  display: none;
}

.plastic-surgery-faq .faq-item.active .faq-answer {
  display: block;
}

.plastic-surgery-faq .faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* =================
   PLASTIC SURGERY TESTIMONIALS
   ================= */

.plastic-surgery-testimonials {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.plastic-surgery-testimonials .trustpilot-link {
  color: #00b67a;
  text-decoration: none;
  font-weight: 600;
}

.plastic-surgery-testimonials .trustpilot-link:hover {
  text-decoration: underline;
}

.plastic-surgery-testimonials .testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.plastic-surgery-testimonials .swiper-slide {
  height: auto;
  display: flex;
}

.plastic-surgery-testimonials .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.plastic-surgery-testimonials .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.plastic-surgery-testimonials .patient-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.plastic-surgery-testimonials .patient-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.plastic-surgery-testimonials .patient-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plastic-surgery-testimonials .avatar-initials {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
}

.plastic-surgery-testimonials .patient-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 4px 0;
}

.plastic-surgery-testimonials .patient-location {
  font-size: 14px;
  color: #4a5568;
  margin: 0 0 4px 0;
}

.plastic-surgery-testimonials .review-date {
  font-size: 12px;
  color: #718096;
  margin: 0;
}

.plastic-surgery-testimonials .rating {
  display: flex;
  gap: 4px;
}

.plastic-surgery-testimonials .rating i {
  color: #ffd700;
  font-size: 16px;
}

.plastic-surgery-testimonials .testimonial-content {
  flex: 1;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.plastic-surgery-testimonials .testimonial-text-wrapper {
  flex: 1;
}

.plastic-surgery-testimonials .testimonial-title {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
}

.plastic-surgery-testimonials .testimonial-text {
  color: #4a5568;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}

.plastic-surgery-testimonials .read-more-btn {
  background: none;
  border: none;
  color: #667eea;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.plastic-surgery-testimonials .read-more-btn:hover {
  color: #4c51bf;
}

.plastic-surgery-testimonials .trustpilot-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f7fafc;
  border-radius: 8px;
  margin-top: auto;
}

.plastic-surgery-testimonials .trustpilot-badge img {
  height: 16px;
  max-width: 72px;
}

.plastic-surgery-testimonials .trustpilot-badge span {
  font-size: 12px;
  color: #4a5568;
  font-weight: 500;
}

.plastic-surgery-testimonials .swiper-navigation {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  padding-bottom: 30px;
}

.plastic-surgery-testimonials .swiper-button-prev,
.plastic-surgery-testimonials .swiper-button-next {
  position: static;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  font-size: 18px;
  transition: all 0.3s ease;
  margin: 0;
  cursor: pointer;
}

.plastic-surgery-testimonials .swiper-button-prev::after,
.plastic-surgery-testimonials .swiper-button-next::after {
  display: none;
}

.plastic-surgery-testimonials .swiper-button-prev:hover,
.plastic-surgery-testimonials .swiper-button-next:hover {
  background: #667eea;
  color: white;
  transform: scale(1.1);
}

.plastic-surgery-testimonials .swiper-pagination {
  position: static;
  margin-top: 24px;
}

.plastic-surgery-testimonials .swiper-pagination-bullet {
  background: #cbd5e0;
  opacity: 1;
}

.plastic-surgery-testimonials .swiper-pagination-bullet-active {
  background: #667eea;
}

@media (max-width: 768px) {
  .plastic-surgery-testimonials .testimonial-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .plastic-surgery-testimonials .testimonial-card {
    padding: 24px 20px;
  }
}

/* =================
   TREATMENT DETAIL SIDEBAR - ORIGINAL + ACCORDION
   ================= */

/* Orijinal tasarımı koru, açılır menü ekle */
.tf-sidebar .sidebar-categories .list .item {
  position: relative;
}

/* Açılır menü kategorileri için özel stil */
.tf-sidebar .sidebar-categories .list .item.has-submenu {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  margin-bottom: 8px;
  padding: 0;
}

.tf-sidebar .sidebar-categories .list .item .category-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  color: #1a202c;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tf-sidebar .sidebar-categories .list .item .category-toggle:hover {
  color: #e74c3c;
}

.tf-sidebar .sidebar-categories .list .item .toggle-icon {
  font-size: 14px;
  color: #999;
  transition: all 0.3s ease;
}

.tf-sidebar .sidebar-categories .list .item.expanded .toggle-icon {
  transform: rotate(45deg);
  color: #e74c3c;
}

.tf-sidebar .sidebar-categories .list .sub-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 8px;
  margin-left: 0;
  background: #f8fafc;
  border-radius: 4px;
}

.tf-sidebar .sidebar-categories .list .sub-list.open {
  max-height: 400px;
}

.tf-sidebar .sidebar-categories .sub-list .item {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 0;
}

.tf-sidebar .sidebar-categories .sub-list .item:last-child {
  border-bottom: none;
}

.tf-sidebar .sidebar-categories .sub-list .item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  color: #666;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tf-sidebar .sidebar-categories .sub-list .item a:hover {
  color: #e74c3c;
  background: white;
}

.tf-sidebar .sidebar-categories .sub-list .item.active a {
  color: #e74c3c;
  background: white;
  font-weight: 600;
}

.tf-sidebar .sidebar-categories .sub-list .item i {
  font-size: 12px;
  color: #999;
}

/* Standard CTA Banner Styling */
.sidebar-banner .benefit-items,
.sidebar-banner .benefit-items span {
  color: rgba(255, 255, 255, 0.9) !important;
}

.sidebar-banner .benefit-items i {
  color: rgba(255, 255, 255, 0.8) !important;
  margin-right: 12px;
}

/* Sidebar Banner Button Styling */
.sidebar-banner-btn {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: white !important;
}

.sidebar-banner-btn:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: white !important;
}



/* Sidebar Banner Title Styling */
.sidebar-banner-title {
  color: white !important;
}

/* Sidebar Banner Content Styling */
.sidebar-banner-content {
  position: relative;
  z-index: 2;
}

/* Sidebar Banner Container */
.sidebar-banner-container {
  position: relative;
  overflow: hidden;
}

/* Sidebar Banner Background Item */
.sidebar-banner-bg-item {
  opacity: 0.1;
}

/* Sidebar Banner Buttons Container */
.sidebar-banner-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: left;
  justify-content: left;
}

/* Sidebar Banner WhatsApp Button */
.sidebar-banner-whatsapp {
  background: rgba(37, 211, 102, 0.2) !important;
  border-color: rgba(37, 211, 102, 0.3) !important;
  color: white !important;
}

.sidebar-banner-whatsapp:hover {
  background: rgba(37, 211, 102, 0.3) !important;
  border-color: rgba(37, 211, 102, 0.5) !important;
  color: white !important;
}

.sidebar-banner-whatsapp i {
  color: #25d366 !important;
  transform: rotate(0deg) !important;
  /* Remove 45deg rotation for WhatsApp icon */
}

.sidebar-banner-whatsapp:hover i {
  transform: rotate(0deg) !important;
  /* Keep WhatsApp icon straight on hover */
}

/* Mobile Responsive for Sidebar Buttons */
@media (max-width: 768px) {
  .sidebar-banner-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .sidebar-banner-btn,
  .sidebar-banner-whatsapp {
    font-size: 13px !important;
    padding: 12px 16px !important;
    width: 100%;
    text-align: center;
  }
}

/* Override styles.css grid layout for ProcessSection - 5 cards in one row */
@media (min-width: 1200px) {
  .sw-grid .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    row-gap: 0 !important;
  }
}

/* Modern Process Step Design */
.process-step {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 0;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
  border: 2px solid transparent;
}

.process-step:hover {
  transform: scale(1.02);
  border-color: #ff6b35;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.15);
}

.step-header {
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  padding: 20px;
  text-align: center;
  position: relative;
}

.step-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #e55a2b;
}

.step-badge {
  display: inline-block;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  line-height: 46px;
  font-size: 20px;
  font-weight: 800;
  color: white;
  text-align: center;
}

.step-body {
  padding: 30px 20px 25px;
  text-align: center;
}

.step-visual {
  margin-bottom: 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-visual img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.step-visual i {
  font-size: 70px;
  color: #ff6b35;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
  line-height: 1.4;
}

.step-text {
  font-size: 14px;
  color: #718096;
  line-height: 1.5;
  margin: 0;
}

/* Hero Section - Medium Screens Fix (1024-1351px) */
@media (min-width: 1024px) and (max-width: 1351px) {
  /* Hide video box on medium screens */
  .box-image {
    display: none !important;
  }
  
  /* Make hero section full width */
  .box-page-title.box-1.hero-slider-container {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  
  /* Adjust content spacing */
  .hero-swiper .swiper-slide .box-page-title-content {
    padding: 40px 30px !important;
    gap: 30px !important;
  }
  
  /* Adjust left and right boxes */
  .hero-swiper .swiper-slide .box-page-title-content .left-box {
    flex: 0 0 40% !important;
  }
  
  .hero-swiper .swiper-slide .box-page-title-content .right-box {
    flex: 0 0 55% !important;
  }
  
  /* Keep consultation form visible but adjust width */
  .box-banner.box-1.consultation-form {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 20px !important;
  }
  
  /* Adjust main flex container */
  .flex.g-10.flex-wrap.mx-30 {
    flex-direction: column !important;
    gap: 20px !important;
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .step-header {
    padding: 18px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    line-height: 41px;
    font-size: 18px;
  }

  .step-body {
    padding: 25px 18px 20px;
  }

  .step-visual {
    height: 60px;
  }

  .step-visual img {
    width: 60px;
    height: 60px;
  }

  .step-visual i {
    font-size: 60px;
  }

  .step-title {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .process-step {
    margin: 0 5px;
    border-radius: 16px;
  }

  .step-header {
    padding: 15px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 16px;
  }

  .step-body {
    padding: 20px 15px 18px;
  }

  .step-visual {
    height: 50px;
    margin-bottom: 15px;
  }

  .step-visual img {
    width: 50px;
    height: 50px;
  }

  .step-visual i {
    font-size: 50px;
  }

  .step-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .step-text {
    font-size: 13px;
  }
}

/* Contact Page Styling */
.contact-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(52, 152, 219, 0.3);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px solid #dee2e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-color: #3498db;
  transform: scale(1.1);
}

.contact-icon i {
  font-size: 28px;
  color: #6c757d;
  transition: color 0.3s ease;
}

.contact-card:hover .contact-icon i {
  color: white;
}

.contact-content {
  text-align: center;
}

.contact-title {
  font-size: 18px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
}

.contact-text {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* Contact Page Responsive */
@media (max-width: 991px) {
  .contact-card {
    padding: 25px 18px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
  }

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

@media (max-width: 768px) {
  .contact-card {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .contact-title {
    font-size: 16px;
  }

  .contact-text {
    font-size: 15px;
  }
}

/* Professional File Upload Styling */
.file-upload-container {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.upload-header {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 20px 25px;
  border-bottom: 1px solid #e9ecef;
}

.upload-title {
  font-size: 16px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 5px;
}

.upload-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.upload-zone {
  border: 2px dashed #dee2e6;
  border-radius: 0;
  padding: 40px 30px;
  text-align: center;
  background: #fafbfc;
  transition: all 0.3s ease;
  position: relative;
  margin: 20px;
  border-radius: 8px;
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: #3498db;
  background: #f0f8ff;
}

.upload-icon {
  margin-bottom: 15px;
}

.upload-icon i {
  font-size: 32px;
  color: #94a3b8;
}

.upload-zone:hover .upload-icon i {
  color: #3498db;
}

.upload-main-text {
  font-size: 16px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}

.upload-or {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 15px;
}

.browse-files-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.browse-files-btn:hover {
  background: #2980b9;
  transform: translateY(-1px);
}

.file-counter {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e3f2fd;
  color: #1976d2;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #bbdefb;
}

.file-list {
  padding: 15px 25px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: between;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

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

.file-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-icon {
  width: 24px;
  height: 24px;
  background: #e3f2fd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-icon i {
  font-size: 12px;
  color: #1976d2;
}

.file-name {
  font-size: 14px;
  color: #2d3748;
  font-weight: 500;
}

.file-size {
  font-size: 12px;
  color: #6b7280;
}

.file-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.file-remove:hover {
  background: #fee2e2;
}

/* Form Messages */
.form-message {
  padding: 12px 20px;
  margin-top: 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* File Item Styling */
.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: #f8f9fa;
  margin-bottom: 8px;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

.file-item:hover {
  background: #e9ecef;
  border-color: #dee2e6;
}

.file-item span {
  font-size: 14px;
  color: #495057;
}

.file-item button {
  background: #dc3545;
  color: white;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: all 0.2s ease;
}

.file-item button:hover {
  background: #c82333;
  transform: scale(1.1);
}

/* Button Loading State */
.tf-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.fa-spinner.fa-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Responsive File Upload */
@media (max-width: 768px) {
  .upload-zone {
    padding: 30px 20px;
    margin: 15px;
  }

  .upload-header {
    padding: 15px 20px;
  }

  .upload-title {
    font-size: 15px;
  }

  .upload-subtitle {
    font-size: 12px;
  }
}

/* Contact Card Links */
.contact-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.contact-card-link:hover {
  text-decoration: none;
}

.contact-card-link .contact-card {
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 234px;
}

/* Hover efekti kaldırıldı - sadece cursor pointer */

/* ============================
   Form Validation Styles 
   ============================ */

/* Custom validation - sadece form submit edilmeye çalışıldığında göster */
.form-contact-us.submitted input:required:invalid {
  border-color: #e74c3c !important;
  background: #ffebee !important;
}

.form-contact-us.submitted input:required:invalid:focus {
  animation: shake 0.4s ease-in-out;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
  border-color: #e74c3c !important;
  background: #ffebee !important;
}

/* Tüm form alanları için gri arka plan */
.form-contact-us input,
.form-contact-us textarea {
  background: #f8f9fa !important;
  border-color: #dee2e6 !important;
}

.form-contact-us input:focus,
.form-contact-us textarea:focus {
  background: #f8f9fa !important;
  border-color: #80bdff !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}

/* Textarea için ikon pozisyonu */
.form-contact-us .item-textarea {
  position: relative;
}

.form-contact-us .item-textarea i,
.form-contact-us .item-textarea .fas {
  position: absolute;
  left: 18px;
  top: 18px;
  color: #6c757d;
  font-size: 16px;
  z-index: 1;
  pointer-events: none;
}

.form-contact-us .item-textarea textarea {
  padding-left: 45px !important;
  padding-top: 18px !important;
  min-height: 120px;
}

/* Validation shake animation */
@keyframes shake {

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

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

/* Custom tooltip styling */
input:required:invalid:focus::after,
textarea:required:invalid:focus::after {
  content: attr(data-error);
  position: absolute;
  top: -30px;
  left: 10px;
  background: #e74c3c;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 1000;
  white-space: nowrap;
}

/* Validation icon'ları kaldırıldı - gereksiz */

/* Features Section Styles */
.features-card-wrapper {
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.features-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.features-card-content {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.features-card-desc {
  flex: 1;
}

/* Consultation Form Message Styles */
.form-message-inline {
  margin-top: 15px;
  padding: 0;
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-message-inline.show {
  display: block;
}

.form-message-inline .message-content {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-message-inline.success .message-content {
  background: rgba(16, 185, 129, 0.12) !important;
  border-color: rgba(16, 185, 129, 0.25) !important;
}

.form-message-inline.error .message-content {
  background: rgba(239, 68, 68, 0.12) !important;
  border-color: rgba(239, 68, 68, 0.25) !important;
}

.form-message-inline.warning .message-content {
  background: rgba(245, 158, 11, 0.12) !important;
  border-color: rgba(245, 158, 11, 0.25) !important;
}

.form-message-inline .message-icon {
  font-size: 20px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: bold;
}

.form-message-inline.success .message-icon {
  color: #10b981 !important;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.form-message-inline.error .message-icon {
  color: #ef4444 !important;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.form-message-inline.warning .message-icon {
  color: #f59e0b !important;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.form-message-inline .message-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 400;
  letter-spacing: 0.3px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.consultation-input.error {
  border-color: rgba(239, 68, 68, 0.5) !important;
  background: rgba(239, 68, 68, 0.05) !important;
}

.consultation-input.error:focus {
  border-color: rgba(239, 68, 68, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}