/* Reset ve Temel Stiller */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header ve Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
  background-color: #222;
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 5px 20px;
}

.social-icons a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
}

.social-icons a:hover {
  color: #e50914;
}

/* Navbar */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s ease;
  font-size: 16px;
  border-radius: 4px;
}

nav a:hover {
  color: #e50914;
  background: rgba(255,255,255,0.1);
}

/* Page Header */
.page-header {
  background: #000;
  color: #fff;
  padding: 20px 0;
  margin-top: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-header h1 {
  color: #e50914;
  font-size: 2rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-header h1 i {
  font-size: 1.8rem;
}

.back-button {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
}

.back-button:hover {
  color: #e50914;
  background: rgba(255,255,255,0.2);
}

/* Page Content */
.page-content {
  padding: 40px 0;
  background: #fff;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.main-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.main-content h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
  color: #333;
}

.main-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

/* Service Grid Mini */
.service-list {
  margin-top: 40px;
}

.service-grid-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-item i {
  font-size: 2.5rem;
  color: #e50914;
  margin-bottom: 15px;
}

.service-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

.service-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 140px;
}

.contact-card,
.info-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
}

.contact-card h3,
.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card h3 i,
.info-card h3 i {
  color: #e50914;
}

.contact-card p {
  margin-bottom: 20px;
  color: #666;
}

.phone-btn,
.whatsapp-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.phone-btn {
  background: #e50914;
  color: #fff;
}

.phone-btn:hover {
  background: #c2060f;
  transform: translateY(-2px);
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 16px 32px;
  margin-top: 18px;
  margin-bottom: 8px;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.15);
  border-radius: 32px;
  border: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-btn i {
  font-size: 2rem;
}

.whatsapp-btn:hover {
  background: #1ebe5b;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(37,211,102,0.25);
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
  color: #666;
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card strong {
  color: #333;
}

/* Hero Slider */
.heroSwiper {
  width: 100%;
  height: 70vh;
  margin: 120px auto 40px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.heroSwiper .swiper-slide {
  position: relative;
}

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

.slide-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.7);
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.slide-caption h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.slide-caption h4 {
  font-size: 1.2rem;
  color: #e50914;
}

/* Services Section */
#services {
  padding: 80px 5% 60px;
  background: #f8f9fa;
  text-align: center;
}

#services h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-box {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-box.box1 { background: linear-gradient(135deg, #e6f7d9, #d4f0c7); }
.service-box.box2 { background: linear-gradient(135deg, #d9f0f7, #c7e8f0); }
.service-box.box3 { background: linear-gradient(135deg, #fff0d6, #ffe8c7); }
.service-box.box4 { background: linear-gradient(135deg, #efe6f7, #e8d7f0); }

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #ff7a00;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(255,122,0,0.3);
}

.service-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.service-box h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.service-box p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-box a {
  display: inline-block;
  padding: 12px 24px;
  background: #333;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #333;
}

.service-box a:hover {
  background: #e50914;
  border-color: #e50914;
  transform: translateY(-2px);
}

/* About Section */
#about {
  padding: 80px 5% 60px;
  text-align: center;
  background: #fff;
}

#about h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

#about p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

/* Contact Section */
#contact {
  padding: 80px 5% 60px;
  text-align: center;
  background: #f8f9fa;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 1px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-info .info p {
  margin: 15px 0;
  font-size: 1rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info .info p i {
  color: #e50914;
  width: 20px;
  text-align: center;
}

.contact-info .info a {
  color: #e50914;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info .info a:hover {
  color: #c2060f;
}

.contact-form {
  text-align: left;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

#contact form {
  display: grid;
  gap: 15px;
}

#contact input,
#contact textarea {
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

#contact input:focus,
#contact textarea:focus {
  outline: none;
  border-color: #e50914;
}

#contact button {
  background: #e50914;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

#contact button:hover {
  background: #c2060f;
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 60px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-section img {
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section p {
  margin: 8px 0;
  line-height: 1.6;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #e50914;
}

.footer-section .social-icons a {
  color: #ccc;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-section .social-icons a:hover {
  color: #e50914;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #999;
}

.footer-section iframe {
  border: none;
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Header ve Navigation */
  .nav-container {
    flex-direction: column;
    padding: 15px 5%;
    gap: 15px;
  }
  
  .logo img {
    height: 40px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  nav a {
    font-size: 14px;
    padding: 6px 10px;
  }
  
  /* Page Header */
  .page-header {
    margin-top: 180px;
    padding: 15px 0;
  }
  
  .page-header h1 {
    font-size: 1.5rem;
  }
  
  .back-button {
    font-size: 1rem;
    padding: 6px 12px;
  }
  
  /* Page Content */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .sidebar {
    position: static;
  }
  
  .service-grid-mini {
    grid-template-columns: 1fr;
  }
  
  /* Hero Slider */
  .heroSwiper {
    height: 50vh;
    margin: 180px auto 30px;
  }
  
  .slide-caption {
    padding: 15px;
  }
  
  .slide-caption h2 {
    font-size: 1.5rem;
  }
  
  .slide-caption h4 {
    font-size: 1rem;
  }
  
  /* Services */
  #services {
    padding: 60px 5% 40px;
  }
  
  #services h2 {
    font-size: 2rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-box {
    padding: 30px 20px;
  }
  
  /* About */
  #about {
    padding: 60px 5% 40px;
  }
  
  #about h2 {
    font-size: 2rem;
  }
  
  #about p {
    font-size: 1rem;
  }
  
  /* Contact */
  #contact {
    padding: 60px 5% 40px;
  }
  
  #contact h2 {
    font-size: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-form {
    text-align: center;
  }
  
  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-section iframe {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 10px 5%;
  }
  
  nav ul {
    gap: 5px;
  }
  
  nav a {
    font-size: 12px;
    padding: 5px 8px;
  }
  
  .page-header {
    margin-top: 200px;
  }
  
  .page-header h1 {
    font-size: 1.3rem;
  }
  
  .heroSwiper {
    height: 40vh;
    margin: 200px auto 20px;
  }
  
  .slide-caption h2 {
    font-size: 1.2rem;
  }
  
  .slide-caption h4 {
    font-size: 0.9rem;
  }
  
  .service-box {
    padding: 25px 15px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-box h3 {
    font-size: 1.2rem;
  }
  
  .service-box p {
    font-size: 0.9rem;
  }
  
  .contact-content {
    gap: 20px;
  }
  
  .service-item {
    padding: 20px 15px;
  }
  
  .contact-card,
  .info-card {
    padding: 20px 15px;
  }
  
  .info-box {
    padding: 20px 15px;
  }
}

@media (max-width: 600px) {
  .whatsapp-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 14px 0;
    border-radius: 24px;
  }
  .whatsapp-btn i {
    font-size: 1.6rem;
  }
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #e50914;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
  border-left: 4px solid #2196f3;
}

.info-box h3 {
  color: #1976d2;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box h3 i {
  color: #2196f3;
}

.info-box p {
  color: #424242;
  line-height: 1.6;
  margin: 0;
}

/* Hizmet Verdiğimiz Markalar Bölümü */
.brands-section {
  background: #fff;
  padding: 60px 0 40px;
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.brands-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 10px;
}

.brands-desc {
  text-align: center;
  color: #999;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.brands-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.brands-divider span {
  display: block;
  width: 60px;
  height: 4px;
  background: #b0bec5;
  border-radius: 2px;
  opacity: 0.6;
}
.brands-divider .active {
  width: 40px;
  background: #ffb300;
  opacity: 1;
}

.brandsSwiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 10px 0;
}

.brandsSwiper .swiper-wrapper {
  align-items: center;
}

.brandsSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fafbfc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 24px 0;
  min-height: 120px;
  transition: box-shadow 0.3s;
}

.brandsSwiper .swiper-slide img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.3s;
}

.brandsSwiper .swiper-slide:hover img {
  filter: grayscale(0) contrast(1.2) drop-shadow(0 2px 8px #ffb30033);
}

/* Responsive */
@media (max-width: 900px) {
  .brandsSwiper .swiper-slide img {
    max-width: 110px;
    max-height: 60px;
  }
}
@media (max-width: 600px) {
  .brands-section {
    padding: 40px 0 20px;
  }
  .brands-title {
    font-size: 1.3rem;
  }
  .brands-desc {
    font-size: 1rem;
  }
  .brandsSwiper .swiper-slide {
    padding: 12px 0;
    min-height: 80px;
  }
  .brandsSwiper .swiper-slide img {
    max-width: 80px;
    max-height: 40px;
  }
  .brands-divider span {
    width: 30px;
    height: 3px;
  }
  .brands-divider .active {
    width: 20px;
  }
}

/* Galeri Sayfası */
.gallery-section {
  padding: 80px 0 40px;
  background: #f8f9fa;
  min-height: 100vh;
}
.gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.gallery-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 10px;
}
.gallery-desc {
  text-align: center;
  color: #999;
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.gallery-video-section {
  margin-bottom: 40px;
}
.gallery-video-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 20px;
}
.gallery-main-video {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  min-height: 320px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.gallery-main-video::-webkit-media-controls-panel {
  background: rgba(0,0,0,0.35);
}
.gallery-video-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 10px 10px 10px 0;
}
.gallery-video-info h2 {
  font-size: 1.6rem;
  color: #1b1b1f;
}
.gallery-video-info p {
  color: #555;
  line-height: 1.6;
}
.gallery-video-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #444;
}
.gallery-video-info ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
}
.gallery-video-info ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e50914;
  font-size: 1.4rem;
  line-height: 1;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.gallery-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s;
}
.gallery-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  z-index: 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
  border-radius: 12px;
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.08) contrast(1.08);
}

@media (max-width: 900px) {
  .gallery-video-wrapper {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .gallery-section {
    padding: 100px 0 30px;
  }
  
  .gallery-video-section {
    margin-bottom: 30px;
  }
  
  .gallery-video-wrapper {
    padding: 14px;
  }
  
  .gallery-main-video {
    min-height: 220px;
  }
  
  .gallery-video-info h2 {
    font-size: 1.3rem;
  }
  
  .gallery-title {
    font-size: 1.6rem;
  }
  
  .gallery-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }
}

/* 7/24 Çekici Hizmeti Alanı */
.towing-section {
  background: #f3f6fa;
  padding: 60px 0 40px;
  margin-bottom: 0;
}
.towing-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 32px 40px;
}
.towing-image img {
  max-width: 120px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.towing-text h2 {
  font-size: 2rem;
  color: #e50914;
  margin-bottom: 12px;
}
.towing-text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 18px;
}
.towing-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.15);
  transition: background 0.2s, transform 0.2s;
}
.towing-btn:hover {
  background: #1da851;
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 900px) {
  .towing-content {
    flex-direction: column;
    gap: 24px;
    padding: 24px 10px;
  }
  .towing-image img {
    max-width: 90px;
  }
  .towing-text h2 {
    font-size: 1.4rem;
  }
  .towing-btn {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* Brand Slider Logo Boyutları */
.brand-logo {
  width: 90px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 8px 12px;
}
@media (max-width: 600px) {
  .brand-logo {
    width: 60px;
    height: 40px;
    padding: 4px 6px;
  }
  .heroSwiper .swiper-slide img {
    max-height: 30vh !important;
  }
}
.heroSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 60vh;
  display: block;
}

/* Büyük ve dikkat çekici marka logoları */
.brand-logo-large {
  width: 160px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 16px 20px;
  transition: transform 0.2s;
}
.brand-logo-large:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.brandsSwiper {
  min-height: 140px;
}
@media (max-width: 900px) {
  .brand-logo-large {
    width: 110px;
    height: 70px;
    padding: 8px 10px;
  }
  .brandsSwiper {
    min-height: 90px;
  }
}
@media (max-width: 600px) {
  .brand-logo-large {
    width: 70px;
    height: 44px;
    padding: 4px 6px;
  }
  .brandsSwiper {
    min-height: 54px;
  }
}

/* Ekran ortasında iletişim kutusu ve neon animasyonlu border */
.contact-animated-border-center-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: rgba(24,24,27,0.92);
}
.contact-animated-border {
  position: relative;
  padding: 40px 32px;
  background: #18181b;
  border-radius: 24px;
  min-width: 340px;
  max-width: 95vw;
  box-shadow: 0 0 32px 0 #e50914cc, 0 2px 32px 0 #000a;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.contact-animated-border::before {
  content: '';
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border-radius: 28px;
  background: conic-gradient(from 0deg, #e50914, #ff0033 90deg, #e50914 180deg, #ff0033 270deg, #e50914 360deg);
  filter: blur(4px) brightness(1.5) drop-shadow(0 0 16px #e50914cc);
  z-index: -1;
  animation: spin-neon-border 6s linear infinite;
}
@keyframes spin-neon-border {
  100% { transform: rotate(1turn); }
}
.contact-animated-border h3 {
  color: #e50914;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}
.contact-animated-border a {
  color: #e50914;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-animated-border a:hover {
  color: #fff;
  text-shadow: 0 0 8px #e50914;
}
.contact-animated-border i {
  margin-right: 8px;
  color: #e50914;
  font-size: 1.2em;
}
@media (max-width: 600px) {
  .contact-animated-border {
    padding: 18px 4px;
    min-width: 0;
    font-size: 1rem;
  }
}

/* İletişim kutusunu her ekranda ortalamak için */
.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 1px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.info.contact-animated-border {
  margin: 0 auto;
}
