/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0056b3;
  --secondary-color: #ff5722;
  --dark-color: #333;
  --light-color: #f8f9fa;
  --text-color: #555;
  --border-color: #ddd;
  --shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--dark-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}
.container {
  width: 100%;
  margin: 0;
  padding: 0;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn.primary {
  background: var(--primary-color);
  color: white;
}

.btn.primary:hover {
  background: #004494;
  transform: translateY(-3px);
}

.btn.secondary {
  background: var(--secondary-color);
  color: white;
}

.btn.secondary:hover {
  background: #e64a19;
  transform: translateY(-3px);
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background-color: var(--dark-color);
  padding: 10px 0;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-info {
  padding-left: 20px;
}

.contact-info a {
  color: white;
  margin-right: 50px;
  font-size: 15px;
}

.contact-info a i {
  margin-right: 10px;
}

.social-media {
  margin-right: 20px;
  margin-left: auto; /* Sol kaydırma için */
}

.social-media a {
  color: white;
  margin-right: 10px;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  text-align: right;
  padding-right: 30px; /* İstediğiniz boşluğa göre ayarlayın */
}

.logo a {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;         
  color: var(--primary-color);
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  right: -10px; /* İnce ayar için */
}
.logo a:hover {
  color: #2c3e50;
  transform: scale(1.02);
}

.logo a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, var(--primary-color), #3498db);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.logo a:hover::after {
  transform: scaleX(1);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .logo a {
    font-size: 22px;
    letter-spacing: 0.8px;
  }
}
.menu {
  display: flex;
}

.menu li {
  margin-left: 30px;
}

.menu li a {
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

.menu li a:hover,
.menu li a.active {
  color: var(--primary-color);
}

.menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.menu li a:hover::after,
.menu li a.active::after {
  width: 100%;
}

.contact-button {
  margin-right: 20px;
  background: var(--primary-color);
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 10px;
}

.contact-button:hover {
  background: #004494;
}

.contact-button::after {
  display: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--dark-color);
  margin: 2px 0;
  transition: var(--transition);
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://www.mapfre.com.tr/blog/media/2021/09/tuvturk-arac-muayene-randevusu-nasil-alinir.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 150px 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Features Section */
.features {
  background-color: var(--light-color);
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-10px);
}

.icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.feature-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark-color);
}


.service-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-box {
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-box h3 {
  font-size: 22px;
  margin: 20px 20px 10px;
  color: var(--dark-color);
}

.service-box p {
  padding: 0 20px 20px;
}

.learn-more {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 20px 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.learn-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.learn-more:hover i {
  transform: translateX(5px);
}


.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://otokonfor.com/wp-content/uploads/2025/02/arac-muayene.webp');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light-color);
}

.testimonial-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
}

.quote {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 15px;
}

.testimonial-box p {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 18px;
  color: var(--dark-color);
}

.testimonial-author span {
  font-size: 14px;
  color: var(--text-color);
}

/* Footer Styles */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 70px 0 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.footer-column p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-social a {
  color: white;
  margin-right: 15px;
  font-size: 18px;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links li a {
  color: #ddd;
}

.footer-links li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact li i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-contact li a {
  color: #ddd;
}

.footer-hours li {
  margin-bottom: 15px;
}

.footer-hours li span {
  font-weight: 600;
  color: var(--primary-color);
  margin-right: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://storage.acerapps.io/app-1411/blog/Image-1b96d495-43ba-4905-b769-a62fc21c1136.png');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.page-header h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.breadcrumb {
  font-size: 16px;
}

.breadcrumb a {
  color: white;
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

.breadcrumb span {
  color: var(--secondary-color);
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.about-text h3 {
  font-size: 24px;
  margin: 25px 0 15px;
  color: var(--dark-color);
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Expertise Section Styling */
.expertise-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.expertise-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.expertise-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.expertise-section .section-title h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.expertise-section .section-title p {
  font-size: 18px;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.expertise-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.expertise-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #e8f4fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3498db;
  font-size: 32px;
  transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
  background: #3498db;
  color: #fff;
}

.expertise-card h3 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.expertise-card p {
  color: #7f8c8d;
  font-size: 16px;
  line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .expertise-items {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .expertise-section {
    padding: 60px 0;
  }
  
  .expertise-section .section-title h2 {
    font-size: 30px;
  }
  
  .expertise-section .section-title p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .expertise-items {
    grid-template-columns: 1fr;
  }
  
  .expertise-card {
    padding: 30px 20px;
  }
}
/* Stats Section */
.stats-section {
  padding: 80px 0;
}

.stats-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stats-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.stats-box:hover {
  transform: translateY(-10px);
}

.stats-box i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stats-box h3 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.stats-box p {
  color: var(--text-color);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-box {
  background: var(--light-color);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 20px;
  margin-top: 5px;
}

.contact-info-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.contact-info-item p,
.contact-info-item a {
  color: var(--text-color);
}

.contact-info-item a:hover {
  color: var(--primary-color);
}

.contact-form-box {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form-box h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.contact-form-box p {
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.contact-form-box button {
  width: 100%;
  padding: 15px;
  margin-top: 10px;
  font-size: 16px;
}

/* Map Section */
.map-section {
  padding: 0 0 80px;
}

.map-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background-color: #eee;
  position: relative;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Services Page Styles */
.services-page .section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.services-page .section-intro h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.services-page .section-intro p {
  color: var(--text-color);
  line-height: 1.8;
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-img {
  height: 100%;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 24px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.service-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-features {
  margin-bottom: 25px;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.service-features li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 4px;
}

/* Process Section */
.process-section {
  background-color: var(--light-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step-content h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

/* FAQ Section Styles */
.faq-section .section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.faq-section .section-intro h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.faq-section .section-intro p {
  color: var(--text-color);
  line-height: 1.8;
}

.faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.faq-category {
  background: var(--light-color);
  color: var(--dark-color);
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.faq-category:hover,
.faq-category.active {
  background: var(--primary-color);
  color: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category-content {
  display: none;
}

.faq-category-content.active {
  display: block;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
}

.faq-question h3 {
  font-size: 18px;
  color: var(--dark-color);
  font-weight: 600;
}

.faq-icon {
  min-width: 20px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 20px 20px;
}

.faq-answer p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.faq-answer ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.faq-answer ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: auto;
}

.blog-content {
  padding: 15px;
}

.blog-title {
  font-size: 1.5em;
  margin: 0 0 10px;
}

.blog-excerpt {
  font-size: 1em;
  color: #666;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  background-color: #007BFF;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .feature-boxes,
  .stats-boxes,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .container {
    padding: 0 25px;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .service-boxes,
  .testimonial-boxes,
  .team-members {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 20px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    max-height: 0;
    transition: var(--transition);
  }

  .menu.active {
    max-height: 500px;
    box-shadow: var(--shadow);
  }

  .menu li {
    margin: 0;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  .contact-button {
    display: inline-block;
    margin-top: 10px;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .faq-categories {
    flex-direction: column;
    align-items: center;
  }

  .faq-category {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 28px;
  }

  .feature-boxes,
  .service-boxes,
  .testimonial-boxes,
  .team-members,
  .stats-boxes,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .top-bar {
    flex-direction: column;
    gap: 10px;
  }

  .container {
    padding: 0 15px;
  }

  section {
    padding: 50px 0;
  }

  .page-header {
    padding: 60px 0;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .faq-question h3 {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
    .container {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 0 10px;
    box-sizing: border-box;
    overflow-x: hidden; /* Yatay kaydırmayı önler */
    }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
