/* :root {
    --card-color: ;
    --card-background-color: ;
    --card-border-color: ;
} */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    user-select: none;
}

.header-section {
    color: #FFFFFF;
    background-color: #000000;
    padding: 20px 40px;
}

.header-section .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-section .header-content .left-side .title {
    font-size: 20px;
    font-weight: 600;
}

.header-section .header-content .menu-toggle {
    display: none;
    font-size: 24px;
    color: #FFFFFF;
    cursor: pointer;
}

.header-section .header-content .right-side {
    display: flex;
    gap: 20px;
}

.header-section .header-content .right-side a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.header-section .header-content .right-side a:hover {
    background-color: #303030;
}

@media (max-width: 768px) {
    .header-section .header-content .left-side .title {
        font-size: 18px;
    }

    .header-section .header-content .menu-toggle {
        display: block;
    }

    .header-section .header-content .right-side {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .header-section .header-content .right-side.active {
        display: flex;
    }
}

.footer-section {
    color: #000000;
    background-color: #FFD450;
    padding: 20px 40px;
}

.footer-section .footer-content {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
}

.footer-section .footer-content .title {
    font-size: 16px;
    font-weight: 500;
}

.footer-section .footer-content .text {
    font-weight: bold;
    font-size: 20px;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 20px;
    }

    .footer-section .footer-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
}

.social-section {
    color: #FFFFFF;
    background-color: #000000;
    padding: 20px 40px;
}

.social-section .social-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
}

.social-section .social-content .left-side .information {
    font-size: 16px;
    font-weight: 500;
}

.social-section .social-content .right-side .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    text-decoration: none;
    color: #000000;
    background-color: #F1F1F1;
    border-radius: 50%;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.social-section .social-content .right-side .social-icons a:hover {
    color: #000000;
    background-color: #FFD450;
}

@media (max-width: 768px) {
    .social-section {
        padding: 20px;
    }

    .social-section .social-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
}













.main-section {
  /* background: url('../img/vehicle.jpg') center center / cover no-repeat; */
  /* min-height: 100dvh; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
}

.main-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #FFFFFF;
  /* background: rgba(0, 0, 0, 0.7); */
  z-index: 1;
}

.main-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #000000;
}

.main-title {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.main-description {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  font-weight: 400;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 30px;
  }

  .main-description {
    font-size: 16px;
  }
}












.info-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  background-color: #F0F0F0;
  flex-wrap: wrap;
}

.info-boxes .box {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: #14375A; /* varsayılan koyu mavi */
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.info-boxes .box:nth-child(2) {
  background-color: #2E63A3; /* orta mavi */
}

.info-boxes .box:nth-child(3) {
  background-color: #E91E63; /* pembe */
}

.info-boxes .box:hover {
  transform: translateY(-5px);
}

.info-boxes .icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.info-boxes h3 {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.info-boxes h3 strong {
  font-weight: 700;
}










































/* .main-section {
    padding: 20px;
}

.faq-section {
    background-color: #FFFFFF;
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
}

.faq-section .faq-title {
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}


 */


   .sss-section {
    background-color: #fff;
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
    font-family: 'Segoe UI', sans-serif;
  }

  .sss-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
  }

  .sss-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-left: 6px solid #FFD700;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .sss-item:hover {
    border-left-color: #e6c200;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  }

  .sss-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #222;
  }

  .sss-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .sss-icon {
    color: #FFD700;
    font-size: 20px;
  }

  .sss-arrow svg {
    width: 30px;
    height: 30px;
    fill: #000;
    transition: transform 0.3s ease;
  }

  .sss-item.active .sss-arrow svg {
    transform: rotate(90deg);
    fill: #000;
  }

  .sss-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    color: #555;
    padding-top: 0;
    line-height: 1.6;
    transition: max-height 0.4s ease, padding-top 0.3s;
  }

  .sss-item.active .sss-answer {
    max-height: 300px;
    padding-top: 15px;
  }

  @media (max-width: 600px) {
    .sss-question {
      font-size: 16px;
    }

    .sss-answer {
      font-size: 15px;
    }
  }










.vehicles-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.vehicle-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
}

.vehicle-card:hover {
  transform: translateY(-5px);
}

.vehicle-card img {
  display: none;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.vehicle-card h3 {
  font-size: 22px;
  margin: 10px 0 8px;
  color: #333;
}

.vehicle-card p {
  font-size: 15px;
  color: #666;
}





.licenses-section {
  padding: 60px 20px;
  max-width: 1300px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #222;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.license-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.license-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  color: white;
}

.card-header h3 {
  font-size: 20px;
  margin: 0;
}

.card-header i {
  font-size: 24px;
}

/* Renkler - ehliyet türüne göre */
.card-header.a1 { background-color: #e67e22; }
.card-header.a2 { background-color: #d35400; }
.card-header.a  { background-color: #c0392b; }
.card-header.b  { background-color: #2980b9; }
.card-header.c  { background-color: #27ae60; }
.card-header.d  { background-color: #8e44ad; }

.card-body {
  padding: 20px 22px;
}

.card-body p {
  margin: 8px 0;
  font-size: 15px;
  color: #444;
}










/* Hero Section */
.hero-section {
  background: linear-gradient(to right, #ffcd37, #ffd903);
  color: #000000;
  text-align: center;
  padding: 80px 20px;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Why Us Section */
.why-us-section {
  padding: 60px 20px;
  text-align: center;
}

.why-us-section h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.reason-card {
  background-color: #f1f1f1;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.reason-card:hover {
  transform: translateY(-5px);
}

.reason-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.reason-card p {
  font-size: 14px;
  color: #555;
}








.hero {
  background: linear-gradient(to right, #ffcd37, #ffd903);
  color: #000000;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  max-width: 700px;
  margin: auto;
}

.form-section {
  max-width: 700px;
  margin: 50px auto;
  padding: 0 20px;
}

.application-form {
  background-color: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #007bff;
  outline: none;
}

.submit-btn {
  background-color: #FFD450;
  color: #000000;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease;
}

.submit-btn:hover {
  background-color: #ffdc13;
}








    .container {
      max-width: 1100px;
      margin: auto;
      padding: 40px 20px;
    }

    .contact-title {
      text-align: center;
      font-size: 32px;
      margin-bottom: 10px;
      color: #1d1d1d;
    }

    .contact-sub {
      text-align: center;
      font-size: 18px;
      color: #666;
      margin-bottom: 40px;
    }

    .contact-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: space-between;
    }

    .contact-form {
      flex: 1 1 500px;
      background-color: white;
      padding: 30px;
      box-shadow: 0 0 15px rgba(0,0,0,0.08);
      border-radius: 10px;
    }

    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 14px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 15px;
    }

    .contact-form button {
      background-color: #FFD450;
      color: #000000;
      padding: 14px 24px;
      border: none;
      font-size: 16px;
      cursor: pointer;
      border-radius: 6px;
      transition: 0.3s;
    }

    .contact-form button:hover {
      background-color: #ffdc13;
    }

    .contact-info {
      flex: 1 1 300px;
      background-color: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.08);
    }

    .contact-info h3 {
      font-size: 22px;
      margin-bottom: 20px;
      color: #333;
    }

    .contact-info p {
      font-size: 16px;
      margin-bottom: 12px;
      color: #555;
    }

    iframe {
      width: 100%;
      height: 300px;
      border: 0;
      margin-top: 40px;
      border-radius: 10px;
    }

    @media screen and (max-width: 768px) {
      .contact-content {
        flex-direction: column;
      }
    }




.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-icons a {
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.floating-icons a.phone {
  background-color: #007bff;
}

.floating-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}




/* Giriş animasyonu alanı */
.intro-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0e0e; /* koyu zemin */
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1s ease forwards;
  animation-delay: 2s;
}

.intro-content {
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInZoom 1.2s ease-out forwards;
}

.intro-content h3 {
  color: #FFD450 !important;
  font-family: 'Dancing Script', cursive !important;
  font-size: 3rem !important;
}

@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}




