/* ===========================
   Genel Ayarlar
=========================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.8;
  opacity: 0;
  animation: fadeIn 0.8s forwards;
  overflow-x: hidden;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ===========================
   Header
=========================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  background: #111;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 28px;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1.2;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

header nav a.active,
header nav a:hover {
  color: #ff6600;
}

/* ===========================
   Hero Alanı
=========================== */
.hero,
.page-hero {
  height: 90vh;
  background: url('images/garage-bg.jpg') center/cover no-repeat fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  padding: 0 20px;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  animation: slideFromRight 1s forwards;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  animation: slideFromLeft 1s forwards;
  animation-delay: 0.2s;
}

/* ===========================
   Butonlar
=========================== */
.btn {
  display: inline-block;
  text-decoration: none;
  background: #ff6600;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: bold;
  border: none;
  cursor: pointer;
  animation: slideFromRight 1s forwards;
  animation-delay: 0.4s;
}

.btn:hover {
  background: #fff;
  color: #ff6600;
}

/* ===========================
   Hizmet Kartları
=========================== */
.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 20px;
  gap: 20px;
}

.service {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(255,255,255,0.1);
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-10px);
}

.service img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  animation: slideFromLeft 1s forwards;
}

/* ===========================
   Footer
=========================== */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 16px;
  animation: slideFromRight 1s forwards;
}

/* ===========================
   Detay Sayfaları
=========================== */
.details {
  max-width: 900px;
  margin: 70px auto 100px auto;
  padding: 0 20px;
  text-align: center;
}

.details h2 {
  font-size: 36px;
  color: #ff6600;
  margin-bottom: 25px;
  animation: slideFromRight 1s forwards;
}

.details p {
  margin-bottom: 25px;
  font-size: 20px;
  animation: slideFromLeft 1s forwards;
  animation-delay: 0.2s;
}

.details ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  text-align: left;
  display: inline-block;
  max-width: 100%;
}

.details ul li {
  background: #111;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(255,255,255,0.05);
  font-size: 18px;
  animation: slideFromRight 1s forwards;
  animation-delay: 0.4s;
}

/* ===========================
   Animasyonlar
=========================== */
@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===========================
   Mobil Uyum
=========================== */
@media (max-width: 768px) {
  header {
    display: block !important;
    padding: 14px 10px !important;
    text-align: center !important;
    position: relative !important;
  }

  header .logo {
    display: block !important;
    font-size: 24px !important;
    margin: 0 0 12px 0 !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  header nav {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px 14px !important;
  }

  header nav a {
    margin: 0 !important;
    padding: 5px 6px !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    background: transparent !important;
    border-radius: 0 !important;
  }

  .hero,
  .page-hero {
    height: auto;
    min-height: 60vh;
    padding: 45px 15px;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 0;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .services {
    display: block;
    padding: 35px 15px;
  }

  .service {
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
    padding: 18px;
  }

  .service img {
    height: 190px;
  }

  .details {
    width: 100%;
    margin: 45px auto 70px auto;
    padding: 0 16px;
  }

  .details h2 {
    font-size: 30px;
    line-height: 1.25;
  }

  .details p {
    font-size: 16px;
    line-height: 1.8;
  }

  .details ul {
    display: block;
    width: 100%;
  }

  .details ul li {
    font-size: 15px;
    padding: 16px;
  }

  .btn {
    padding: 11px 18px;
    font-size: 14px;
  }

  footer {
    font-size: 13px;
    padding: 18px 10px;
  }
}

@media (max-width: 430px) {
  header .logo {
    font-size: 22px !important;
  }

  header nav a {
    font-size: 14px !important;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .details h2 {
    font-size: 27px;
  }
}/* ===========================
   Genel Ayarlar
=========================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.8;
  opacity: 0;
  animation: fadeIn 0.8s forwards;
  overflow-x: hidden;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ===========================
   Header
=========================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  background: #111;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 28px;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1.2;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

header nav a.active,
header nav a:hover {
  color: #ff6600;
}

/* ===========================
   Hero Alanı
=========================== */
.hero,
.page-hero {
  height: 90vh;
  background: url('images/garage-bg.jpg') center/cover no-repeat fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  padding: 0 20px;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  animation: slideFromRight 1s forwards;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  animation: slideFromLeft 1s forwards;
  animation-delay: 0.2s;
}

/* ===========================
   Butonlar
=========================== */
.btn {
  display: inline-block;
  text-decoration: none;
  background: #ff6600;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: bold;
  border: none;
  cursor: pointer;
  animation: slideFromRight 1s forwards;
  animation-delay: 0.4s;
}

.btn:hover {
  background: #fff;
  color: #ff6600;
}

/* ===========================
   Hizmet Kartları
=========================== */
.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 20px;
  gap: 20px;
}

.service {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(255,255,255,0.1);
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-10px);
}

.service img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  animation: slideFromLeft 1s forwards;
}

/* ===========================
   Footer
=========================== */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 16px;
  animation: slideFromRight 1s forwards;
}

/* ===========================
   Detay Sayfaları
=========================== */
.details {
  max-width: 900px;
  margin: 70px auto 100px auto;
  padding: 0 20px;
  text-align: center;
}

.details h2 {
  font-size: 36px;
  color: #ff6600;
  margin-bottom: 25px;
  animation: slideFromRight 1s forwards;
}

.details p {
  margin-bottom: 25px;
  font-size: 20px;
  animation: slideFromLeft 1s forwards;
  animation-delay: 0.2s;
}

.details ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  text-align: left;
  display: inline-block;
  max-width: 100%;
}

.details ul li {
  background: #111;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(255,255,255,0.05);
  font-size: 18px;
  animation: slideFromRight 1s forwards;
  animation-delay: 0.4s;
}

/* ===========================
   Animasyonlar
=========================== */
@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===========================
   Mobil Uyum
=========================== */
@media (max-width: 768px) {
  header {
    display: block !important;
    padding: 14px 10px !important;
    text-align: center !important;
    position: relative !important;
  }

  header .logo {
    display: block !important;
    font-size: 24px !important;
    margin: 0 0 12px 0 !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  header nav {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px 14px !important;
  }

  header nav a {
    margin: 0 !important;
    padding: 5px 6px !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    background: transparent !important;
    border-radius: 0 !important;
  }

  .hero,
  .page-hero {
    height: auto;
    min-height: 60vh;
    padding: 45px 15px;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 0;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .services {
    display: block;
    padding: 35px 15px;
  }

  .service {
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
    padding: 18px;
  }

  .service img {
    height: 190px;
  }

  .details {
    width: 100%;
    margin: 45px auto 70px auto;
    padding: 0 16px;
  }

  .details h2 {
    font-size: 30px;
    line-height: 1.25;
  }

  .details p {
    font-size: 16px;
    line-height: 1.8;
  }

  .details ul {
    display: block;
    width: 100%;
  }

  .details ul li {
    font-size: 15px;
    padding: 16px;
  }

  .btn {
    padding: 11px 18px;
    font-size: 14px;
  }

  footer {
    font-size: 13px;
    padding: 18px 10px;
  }
}

@media (max-width: 430px) {
  header .logo {
    font-size: 22px !important;
  }

  header nav a {
    font-size: 14px !important;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .details h2 {
    font-size: 27px;
  }
}