/* 
   Ana Stil Dosyası - Tam Özellikli Versiyon
   Teknik Servis Web Sitesi için özel stiller
*/

/* ---------- Temel Değişkenler ---------- */
:root {
  --primary-color: #e60000;
  --primary-hover: #cc0000;
  --button-color: #ff3333;
  --button-hover: #e62b2b;
  --secondary-color: #333333;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #0056b3; 
  --light-color: #f8f9fa;
  --dark-color: #222222;
  --white-color: #ffffff;
  --body-bg: #ffffff;
  --body-color: #333333;
  --transition-speed: 0.3s;
  --icon-small: 1.25rem;
  --icon-medium: 1.75rem;
  --icon-large: 2.25rem;
  --icon-xlarge: 3rem;
}

.justify-content-center {
    padding-left: 20px;
    padding-right: 20px;
}

/* ---------- Genel Stiller ---------- */
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--body-color);
  background-color: var(--body-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

a {
  color: var(--primary-color);
  transition: all var(--transition-speed) ease;
  text-decoration: none;
}

a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

/* ---------- Animasyonlar ve Efektler ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: fadeIn;
}

.slideUp {
  animation-name: slideUp;
}

.pulse {
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

/* ---------- Butonlar ---------- */
.btn {
  font-weight: 600;
  border-radius: 4px;
  padding: 0.625rem 1.75rem;
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--button-color);
  border-color: var(--button-color);
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
  background-color: var(--button-hover);
  border-color: var(--button-hover);
}

.btn-outline-primary {
  color: var(--button-color);
  border-color: var(--button-color);
}

.btn-outline-primary:hover {
  background-color: var(--button-color);
  border-color: var(--button-color);
  color: var(--white-color);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

.btn-cta {
  background-color: var(--button-color);
  border-color: var(--button-color);
  color: var(--white-color);
  padding: 0.75rem 2rem;
  animation: pulse 2s infinite;
  font-weight: 700;
}

.btn-cta:hover {
  background-color: var(--button-hover);
  border-color: var(--button-hover);
  animation: none;
}

.btn i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.btn-lg i {
  font-size: 1.1rem;
}

.btn-sm i {
  font-size: 0.875rem;
  margin-right: 0.35rem;
}

/* ---------- Renkler ve Arka Plan ---------- */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
  color: var(--white-color);
}

.card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-speed) ease;
  border-radius: 8px;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.card-header {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-bottom: none;
  padding: 1rem 1.5rem;
  font-weight: 600;
}

.form-control {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  transition: all var(--transition-speed) ease;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(230, 0, 0, 0.25);
  border-color: var(--primary-color);
}

/* ---------- Header Stiller ---------- */
.top-bar {
  font-size: 0.9rem;
  background-color: var(--primary-color);
  padding: 8px 0;
}

.top-bar a {
  color: var(--white-color);
      font-size: 20px;
}

.top-bar a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar i {
  font-size: var(--icon-small);
  margin-right: 0.35rem;
}

.social-icons .list-inline-item a {
  transition: all var(--transition-speed) ease;
}

.social-icons .list-inline-item a:hover {
  transform: translateY(-3px);
}

.social-icons .list-inline-item a i {
  font-size: var(--icon-medium);
}

.main-header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
}

.navbar-brand img {
  max-height: 60px;
  transition: all var(--transition-speed) ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  padding: 1.5rem 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  position: relative;
  transition: all var(--transition-speed) ease;
}

.navbar-nav .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: all var(--transition-speed) ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
  width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  color: var(--primary-color);
}

.navbar-toggler i {
  font-size: var(--icon-large);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* ---------- Hero Slider ---------- */
.hero-slider .carousel-item {
  height: 500px;
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.hero-slider .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slider .carousel-item.active img {
  transform: scale(1);
}

.hero-slider .carousel-caption {
  bottom: 25%;
  transform: translateY(50%);
  max-width: 900px;
  margin: 0 auto;
  left: 10%;
  right: 10%;
  text-align: center;
  opacity: 0;
}

.hero-slider .carousel-item.active .carousel-caption {
  animation: fadeIn 1s forwards, slideUp 1s forwards;
}

.hero-slider .carousel-caption h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 700;
}

.hero-slider .carousel-caption p {
  font-size: 1.35rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 5%;
  opacity: 0;
  transition: all 0.5s ease;
}

.hero-slider .carousel-control-prev i,
.hero-slider .carousel-control-next i {
  font-size: var(--icon-xlarge);
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
  opacity: 0.8;
}

.hero-slider .carousel-indicators {
  bottom: 30px;
}

.hero-slider .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white-color);
  opacity: 0.5;
  transition: all var(--transition-speed) ease;
  margin: 0 5px;
}

.hero-slider .carousel-indicators button.active {
  background-color: var(--primary-color);
  opacity: 1;
  transform: scale(1.2);
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 4rem 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  background-image: linear-gradient(to right, rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.8)), url('/assets/img/pattern.png');
  background-size: cover;
  animation: fadeIn 1s;
}

.page-header h1 {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-weight: 700;
    text-transform: capitalize;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
  font-weight: 500;
}

.breadcrumb-item i {
  font-size: var(--icon-small);
  margin-right: 0.35rem;
}

.breadcrumb-item.active {
  color: var(--secondary-color);
  font-weight: 500;
}

/* ---------- Content Styles ---------- */
.section-title {
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  padding-bottom: 15px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-title p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.services-section .service-card,
.brands-section .brand-card {
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-speed) ease;
  border-radius: 8px;
  height: 100%;
}

.service-icon i, 
.brand-logo i {
  font-size: var(--icon-xlarge);
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  transition: all var(--transition-speed) ease;
}

.service-card:hover .service-icon i,
.brand-card:hover .brand-logo i {
  transform: scale(1.1);
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  padding: 0.75rem 0;
  position: relative;
  padding-left: 30px;
}

.check-list li i {
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: var(--primary-color);
  font-size: var(--icon-small);
}

.feature-item, 
.testimonial-card, 
.blog-card {
  transition: all var(--transition-speed) ease;
  height: 100%;
}

.feature-item:hover, 
.testimonial-card:hover, 
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: var(--icon-large);
  color: #ffffff;
}

.stats-section {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 0;
  position: relative;
}

.stats-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/img/pattern-dark.png');
  background-size: cover;
  opacity: 0.1;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 1.2rem;
  font-weight: 500;
}

.testimonials-section .testimonial-card {
  padding: 2rem;
  border-radius: 8px;
  position: relative;
}

.testimonial-card:before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(230, 0, 0, 0.1);
  line-height: 1;
}

.testimonial-rating i {
  color: var(--warning-color);
  font-size: var(--icon-small);
}

.benefit-item, 
.process-step {
  margin-bottom: 2.5rem;
  transition: all var(--transition-speed) ease;
}

.benefit-item:hover, 
.process-step:hover {
  transform: translateY(-5px);
}

.service-process .process-icon i,
.benefit-item .benefit-icon i {
  font-size: var(--icon-xlarge);
  color: #ffffff;
  transition: all var(--transition-speed) ease;
}

.benefit-item:hover .benefit-icon i,
.process-step:hover .process-icon i {
  transform: scale(1.1);
}

.call-to-action {
  background: var(--primary-color);
  padding: 4rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.call-to-action:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/img/pattern-light.png');
  background-size: cover;
  opacity: 0.1;
}

.rounded-circle {
    border-radius: 30% !important;
}

.card-header .mb-0{
    color:#ffffff;
}

.call-to-action .mb-3{
    color:#ffffff;
}

/* ---------- Service & Brand Pages ---------- */
.service-list-card,
.brand-service-card {
  padding: 1.75rem;
  transition: all var(--transition-speed) ease;
  height: 100%;
  border-radius: 8px;
}

.service-list-card i,
.brand-service-card i {
  font-size: var(--icon-medium);
  color: var(--primary-color);
}

.service-template .faq,
.brand-template .testimonials {
  margin-top: 3.5rem;
}

.service-cta,
.brand-cta {
  margin-top: 3.5rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 8px;
  background: var(--primary-color);
  box-shadow: 0 10px 30px rgba(230, 0, 0, 0.2);
  color: white;
}

.working-hours li {
  padding: 0.75rem 0;
  border-bottom: 1px dashed #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.working-hours li:last-child {
  border-bottom: none;
}

.brand-logo-card {
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-speed) ease;
  height: 100%;
}

.brand-logo-card img {
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  transition: all var(--transition-speed) ease;
}

.brand-logo-card:hover img {
  transform: scale(1.1);
}

.category-icon i {
  font-size: var(--icon-xlarge);
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  transition: all var(--transition-speed) ease;
}

.category-card:hover .category-icon i {
  transform: scale(1.1);
}

/* ---------- Contact Page ---------- */
.contact-icon {
  font-size: var(--icon-large);
  color: var(--primary-color);
  transition: all var(--transition-speed) ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.contact-form-container {
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container {
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-item {
  margin-bottom: 2.5rem;
  transition: all var(--transition-speed) ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.social-icons a {
  font-size: var(--icon-large);
  margin-right: 1.25rem;
  color: var(--primary-color);
  transition: all var(--transition-speed) ease;
}

.social-icons a:hover {
  transform: translateY(-5px);
  color: var(--primary-hover);
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 4rem 0 1.5rem;
  position: relative;
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/img/pattern-dark.png');
  background-size: cover;
  opacity: 0.05;
}

.footer h5 {
  color: white;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer h5:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer a {
  color: var(--light-color);
  transition: all var(--transition-speed) ease;
  display: inline-block;
}

.footer a:hover {
  color: white;
  text-decoration: none;
  transform: translateX(5px);
}

.footer a i {
  font-size: var(--icon-small);
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.footer-social-icons a {
  font-size: var(--icon-large);
  margin-right: 1.25rem;
  color: var(--light-color);
  transition: all var(--transition-speed) ease;
}

.footer-social-icons a:hover {
  color: var(--primary-color);
  transform: translateY(-5px);
}

.filter-white {
  filter: brightness(0) invert(1);
}

.contact-info li {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
}

.contact-info li i {
  margin-right: 10px;
  color: var(--primary-color);
  margin-top: 5px;
  font-size: var(--icon-medium);
}

/* ---------- Contact Buttons ---------- */
.contact-buttons {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.contact-buttons a {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-speed) ease;
  font-size: 1.75rem;
}

.contact-buttons a:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-phone {
  background-color: var(--primary-color);
  animation: pulse 2s infinite;
}

.contact-whatsapp {
  background-color: #25d366;
  animation: pulse 2s infinite;
}

/* ---------- Error Page ---------- */
.error-page {
  padding: 5rem 0;
  text-align: center;
}

.error-page h1 {
  font-size: 6.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 2px 2px 10px rgba(230, 0, 0, 0.2);
}

.error-page h2 {
  font-size: 2.75rem;
  margin-bottom: 1.75rem;
}

.popular-services {
  margin-top: 3.5rem;
}

/* ---------- Accordion Styles ---------- */
.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(230, 0, 0, 0.25);
  border-color: var(--primary-color);
}

.accordion-button::after {
  background-size: 1.25rem;
}

.alert-info {
  background-color: rgba(0, 86, 179, 0.1);
  border-color: rgba(0, 86, 179, 0.2);
  color: var(--info-color);
}

.alert-info i {
  color: var(--info-color);
  font-size: var(--icon-small);
  margin-right: 0.5rem;
}

/* ---------- Media Queries ---------- */
@media (max-width: 1199.98px) {
  .navbar-nav .nav-link {
    padding: 1.25rem 0.75rem;
  }
  
  .hero-slider .carousel-caption h2 {
    font-size: 3rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  :root {
    --icon-xlarge: 2.75rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: white;
    padding: 1.25rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 10px;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    text-align: center;
  }
  
  .navbar-nav .nav-link:before {
    display: none;
  }
  
  .hero-slider .carousel-item {
    height: 450px;
  }
  
  .hero-slider .carousel-caption h2 {
    font-size: 2.5rem;
  }
  
  .hero-slider .carousel-caption p {
    font-size: 1.125rem;
  }
  
  .section-title h2 {
    font-size: 2.25rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .page-header {
    padding: 3rem 0;
  }
  
  .page-header h1 {
    font-size: 2.25rem;
  }
  
  :root {
    --icon-large: 2rem;
    --icon-xlarge: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  /* Page Header mobil cihazlarda gizlenir */
  .page-header {
    display: none;
  }
  
  .hero-slider .carousel-item {
    height: 400px;
  }
  
  .hero-slider .carousel-caption h2 {
    font-size: 2rem;
  }
  
  .hero-slider .carousel-caption p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .stat-number {
    font-size: 2.25rem;
  }
  
  .contact-buttons {
    right: 20px;
    bottom: 20px;
  }
  
  .contact-buttons a {
    width: 65px;
    height: 65px;
    margin-bottom: 12px;
    font-size: 1.65rem;
  }
  
  .section-title {
    margin-bottom: 2.5rem;
  }
  
  .service-cta, .brand-cta {
    padding: 2rem;
  }
  
  .footer {
    padding: 3rem 0 1rem;
  }
  
  :root {
    --icon-small: 1.1rem;
    --icon-medium: 1.5rem;
    --icon-large: 1.75rem;
    --icon-xlarge: 2.25rem;
  }
  
  .service-icon i, 
  .brand-logo i,
  .category-icon i,
  .service-process .process-icon i,
  .benefit-item .benefit-icon i {
    font-size: var(--icon-large);
  }
  
  .social-icons a,
  .footer-social-icons a {
    font-size: var(--icon-medium);
    margin-right: 1rem;
  }
  
  .contact-icon {
    font-size: var(--icon-medium);
  }
  
  .navbar-brand img {
    max-height: 50px;
  }
  
  .navbar {
    padding: 10px 0;
  }
  
  .map-container {
    height: 350px;
  }
}

@media (max-width: 575.98px) {
  .hero-slider .carousel-item {
    height: 350px;
  }
  
  .hero-slider .carousel-caption h2 {
    font-size: 1.75rem;
  }
  
  .hero-slider .carousel-caption p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .error-page h1 {
    font-size: 4.5rem;
  }
  
  .error-page h2 {
    font-size: 1.75rem;
  }
  
  .contact-buttons a {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.5rem 1.5rem;
  }
  
  .btn-lg {
    padding: 0.625rem 1.75rem;
  }
  
  /* Çok küçük ekranlar için daha küçültülmüş ikon boyutları */
  :root {
    --icon-small: 1rem;
    --icon-medium: 1.35rem;
    --icon-large: 1.6rem;
    --icon-xlarge: 2rem;
  }
}

/* Görünüm İyileştirmeleri */
.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(230, 0, 0, 0.25);
  border-color: var(--primary-color);
}

.accordion-button::after {
  background-size: 1.25rem;
}

.alert-info {
  background-color: rgba(0, 86, 179, 0.1);
  border-color: rgba(0, 86, 179, 0.2);
  color: var(--info-color);
}

.alert-info i {
  color: var(--info-color);
  font-size: var(--icon-small);
  margin-right: 0.5rem;
}

/* Tüm buton efektleri ve geçişleri için düzenleme */
.btn, a, .card, .nav-link, .form-control,
.contact-buttons a, .social-icons a, .footer-social-icons a,
.service-icon i, .brand-logo i, .category-icon i,
.process-icon i, .benefit-icon i, .testimonial-card,
.feature-item, .blog-card, .brand-service-card, .service-list-card {
  transition: all var(--transition-speed) ease;
}

/* Bootstrap listelerindeki ikonlar */
.list-group-item i,
.dropdown-item i {
  font-size: var(--icon-small);
  margin-right: 0.5rem;
  color: var(--primary-color);
}

/* Özel efektler */
.zoom-hover:hover {
  transform: scale(1.05);
}

.shadow-hover:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Form etiketlerinde ikonlar */
.form-label i {
  color: var(--primary-color);
  font-size: var(--icon-small);
  margin-right: 0.35rem;
}

/* Input gruplarındaki ikonlar */
.input-group-text i {
  font-size: var(--icon-small);
  color: var(--primary-color);
}

/* Badge stilleri */
.badge {
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.badge-primary {
  background-color: var(--primary-color);
  color: white;
}

/* İkon renkleri tutarlılığı */
.text-primary i,
.text-success i,
.text-danger i,
.text-warning i,
.text-info i {
  color: inherit;
  font-size: 1em;
}

/* Tablo ikonları */
table i {
  font-size: var(--icon-small);
  margin-right: 0.35rem;
}

/* Renkler için CSS değişkenleri */
.bg-primary { background-color: var(--primary-color) !important; }
.bg-button { background-color: var(--button-color) !important; }
.text-primary { color: var(--primary-color) !important; }
.text-button { color: var(--button-color) !important; }
.border-primary { border-color: var(--primary-color) !important; }
.border-button { border-color: var(--button-color) !important; }

/* Tüm hover efektleri için CSS değişkenleri */
.hover-primary:hover { color: var(--primary-color) !important; }
.hover-button:hover { color: var(--button-color) !important; }
.hover-bg-primary:hover { background-color: var(--primary-color) !important; }
.hover-bg-button:hover { background-color: var(--button-color) !important; }

/* Mobil Optimizasyonları */
@media (max-width: 767.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  h1, h2, h3, h4, h5, h6 {
    word-break: break-word;
  }
  
  .service-card, .brand-card, .testimonial-card, .blog-card {
    margin-bottom: 20px;
  }
  
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .row > [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  
  
  /* Mobil için daha büyük dokunma alanları */
  .btn, 
  .nav-link, 
  .form-control,
  .navbar-toggler {
    min-height: 44px; /* Apple'ın önerdiği minimum dokunma alanı yüksekliği */
  }
  
  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Mobil cihazlarda daha iyi dokunma deneyimi için liste öğelerini büyüt */
  .list-group-item,
  .dropdown-item,
  .working-hours li,
  .check-list li {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  /* Mobil menü ikonlarını büyüt */
  .navbar-nav .nav-link i {
    font-size: var(--icon-medium);
    margin-right: 0.5rem;
  }
}

/* Sayfa Yüklenme Animasyonu */
body {
  visibility: hidden;
}

body.loaded {
  visibility: visible;
  animation: fadeIn 0.5s;
}

/* Sayfa içi animasyonlar için gerekli sınıflar */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Önemli içeriği sayfa yüklenmeden önce görünür yap */
.preload-visible {
  visibility: visible !important;
}

/* Baskı Stilleri */
@media print {
  .main-header,
  .footer,
  .contact-buttons,
  .hero-slider,
  .call-to-action {
    display: none !important;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .page-header {
    padding: 1rem 0;
    margin-bottom: 2rem;
    background: none;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  .col-md-6,
  .col-lg-4 {
    width: 50% !important;
    float: left !important;
  }
}

.region-intro h2 {
    text-transform: capitalize;
}

.region-services h3 {
    text-transform: capitalize;
}

.region-cta h4 {
    text-transform: capitalize;
}

.page-header li {
    text-transform: capitalize;
}

.call-to-action h2 {
    text-transform: capitalize;

}

.footer h5,
.footer a,
.footer .contact-info,
.footer .footer-social-icons {
  position: relative;
  z-index: 2;
}

.call-to-action h2,
.call-to-action p,
.call-to-action .btn {
  position: relative;
  z-index: 2;
}

/* Hizmet Bölgeleri Sayfası için Ek Stiller */
.service-regions-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-regions-content .card {
    transition: all 0.3s ease;
}

.service-regions-content .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-regions-content .list-unstyled li a {
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.service-regions-content .list-unstyled li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-regions-content h6 {
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 1px dashed #ddd;
    margin-top: 15px;
}

    .mobil-btn {
        display: block;
        position: fixed;
        bottom: 0;
        right: 0;
        background: #f7f7f7;
        width: 100%;
        height: 65px;
        z-index: 13;
        padding: 0;
    }

    .mobil-btn .vc_col-xs-12 {
        display: flex;
        width: 100%;
        scroll-behavior: smooth;
        padding: 10px;
        text-align: center;
    }

    .mobil-btn .btn-small {
        scroll-behavior: smooth;
        background-color: #ff3333 !important;
        width: 100%;
        color: #fff;
        border-radius: 5px;
        font-size: 18px;
        box-shadow: 0px 10px 40px 0px rgba(250, 1, 65, 0.2);
    }

    @media screen and (min-width: 768px) {
        .mobil-btn {
            display: none;
        }
    }

    /* İkon Titreşim Animasyonu */
    @keyframes shake-icon {
        0%, 100% { /* Animasyonun başı ve sonu (2 saniyelik periyodun) */
            transform: translateX(0);
        }
        25%, 75% { /* Titreşimin ilk yarısı için (0.5s ve 1.5s noktaları) */
            transform: translateX(-3px);
        }
        50% { /* Titreşimin zirvesi (1s noktası) */
            transform: translateX(3px);
        }
        /* Titreşim 0s - 0.5s arası gerçekleşecek, sonra 1.5s duracak */
        /* Daha hassas kontrol için: */
        /*
        0% { transform: translateX(0); }
        2.5% { transform: translateX(-2px); } /* 2s * 0.025 = 0.05s */
        /*
        5% { transform: translateX(2px); }   /* 2s * 0.05  = 0.1s */
        /*
        7.5% { transform: translateX(-2px); } /* 2s * 0.075 = 0.15s */
        /*
        10% { transform: translateX(2px); }  /* 2s * 0.1   = 0.2s */
        /*
        12.5% { transform: translateX(0); }  /* 2s * 0.125 = 0.25s -> Titreşim biter */
        /* 100% { transform: translateX(0); } /* Kalan süre boyunca sabit */
        /*
        */
    }

    /* Yeniden düzenlenmiş titreşim, sadece ilk 0.5 saniye içinde */
    @keyframes shake-icon-periodic {
        0% { transform: translateX(0); }
        5% { transform: translateX(-3px); } /* 0.1s */
        10% { transform: translateX(3px); } /* 0.2s */
        15% { transform: translateX(-3px); } /* 0.3s */
        20% { transform: translateX(3px); } /* 0.4s */
        25% { transform: translateX(0); } /* 0.5s - Titreşim bitti */
        100% { transform: translateX(0); } /* Kalan 1.5s boyunca sabit */
    }


    .mobil-btn .fas.fa-headset {
        display: inline-block; /* Transform özelliğinin düzgün çalışması için */
        animation-name: shake-icon-periodic; /* Tanımladığımız animasyonun adı */
        animation-duration: 2s;          /* Animasyonun toplam süresi */
        animation-iteration-count: infinite; /* Animasyonun sonsuz kez tekrarlanması */
        animation-timing-function: ease-in-out; /* Animasyonun hız eğrisi */
    }
    
    
/* Ana Container Stilleri */
.all-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.all-services h3 {
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.all-services h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

/* Hizmet Kartı Stilleri */
.service-enhanced-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.service-enhanced-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-enhanced-card:hover::before {
    opacity: 1;
}

/* Resim Bölümü */
.service-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-enhanced-card:hover .service-image-container img {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,123,255,0.8), rgba(40,167,69,0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-enhanced-card:hover .service-image-overlay {
    opacity: 1;
}

.service-main-icon {
    color: white;
    font-size: 3rem;
    opacity: 0.9;
}

/* Kart İçerik Bölümü */
.service-card-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Alt Kategoriler Bölümü */
.sub-categories-section {
    margin-bottom: 1.5rem;
}

.sub-categories-title {
    color: #495057;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.sub-categories-title i {
    margin-right: 0.5rem;
    color: #007bff;
}

.sub-categories-container {
    line-height: 1.8;
}

.sub-category-item {
    background: #f8f9fa;
    color: #495057;
    padding: 0.4rem 0.8rem;
    margin-bottom: 0.4rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-right: 0.4rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.sub-category-item:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-1px);
}

/* Buton Stilleri */
.service-detail-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-detail-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.service-detail-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-detail-btn:hover i {
    transform: translateX(3px);
}

/* SEO İçin Gizli Veriler */
.service-schema-data {
    display: none;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .all-services {
        padding: 2rem 1rem;
        margin: 1rem 0;
        border-radius: 15px;
    }

    .all-services h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .service-image-container {
        height: 160px;
    }

    .service-card-body {
        padding: 1.3rem;
    }

    .service-card-title {
        font-size: 1.1rem;
    }

    .sub-category-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Animasyon Efektleri */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-enhanced-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-enhanced-card:nth-child(2) { animation-delay: 0.1s; }
.service-enhanced-card:nth-child(3) { animation-delay: 0.2s; }
.service-enhanced-card:nth-child(4) { animation-delay: 0.3s; }
.service-enhanced-card:nth-child(5) { animation-delay: 0.4s; }
.service-enhanced-card:nth-child(6) { animation-delay: 0.5s; }

/* Erişilebilirlik İyileştirmeleri */
.service-enhanced-card:focus-within {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.service-detail-btn:focus {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
}