/* public/style.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #c62828;
  --primary-dark: #b71c1c;
  --primary-light: #ef5350;
  --secondary: #2c3e50;
  --black: #111;
  --black-dark: #000;
  --black-light: #1f1f1f;
  --white: #fff;
  --gray: #6b7280;
  --gray-light: #f9fafb;
  --gray-lighter: #f3f4f6;
  --gray-dark: #4b5563;
  --text-color: #374151;
}

body {
  color: var(--text-color);
  overflow-x: hidden;
  background: var(--white);
  font-family: Inter, Segoe UI, system-ui, -apple-system, BlinkMacSystemFont, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

header {
  color: var(--black);
  position: fixed;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: #fffffff2;
  width: 100%;
  padding: 0;
  transition: all .3s;
  top: 0;
  box-shadow: 0 4px 6px -1px #0000000d;
}

header.scrolled {
  background: #fffffffa;
  padding-bottom: .5rem;
  box-shadow: 0 4px 10px #0000001a;
}

.header-top {
  background: var(--black-light);
  color: var(--white);
  padding: .5rem 2rem;
  font-size: .85rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  max-width: 1200px;
  margin: 0 auto;
}

.header-contact {
  display: flex;
  gap: 1.5rem;
}

.header-contact a {
  color: #ffffffe6;
  text-decoration: none;
  display: flex;
  align-items:  center;
  gap: .4rem;
  transition: color .3s;
}

.header-contact a:hover {
  color: var(--primary-light);
}

.social-links {
  display: flex;
  gap: .8rem;
}

.social-links a {
  color: var(--white);
  transition: color .3s;
  font-size: 1rem;
}

.social-links a:hover {
  color: var(--primary-light);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  text-decoration: none;
  align-items:  center;
  gap: .8rem;
}

.logo-img {
  object-fit: contain;
  width: auto;
  height: 45px;
}

.logo span {
  color: var(--black);
  letter-spacing: -.5px;
  font-size: 1.4rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--black-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  position: relative;
  transition: color .3s;
  font-size: .9rem;
  font-weight: 600;
}

.nav-links a:after {
  content: "";
  position: absolute;
  background: var(--primary);
  width: 0;
  height: 2px;
  transition: width .3s;
  bottom: -4px;
  left: 0;
}

.nav-links a:hover:after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  color: var(--black);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
}

.hero {
  position: relative;
  height: 85vh;
  display: flex;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  justify-content: center;
  align-items:  center;
  height: 85dvh;
  min-height: 600px;
  margin-top: 0;
  padding-top: 120px;
}

.hero:before {
  content: "";
  position: absolute;
  position: fixed;
  z-index: -1;
  will-change: transform;
  background-color: #0000;
  background-image: linear-gradient(#0009, #000000b3), url("/1-x7zjfsjp.jpeg");
  background-position: center;
  background-repeat: repeat, repeat;
  background-size: cover;
  background-attachment: scroll, scroll;
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateZ(0);
}

.hero-content {
  z-index: 2;
  animation: fadeInUp 1s ease;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero h1 {
  letter-spacing: -1px;
  margin-bottom: 1rem;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--primary-light);
}

.hero p {
  opacity: .9;
  max-width: 600px;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  max-width: 900px;
  margin: 2rem 0;
}

.hero-tag {
  backdrop-filter: blur(5px);
  color: var(--white);
  background: #ffffff26;
  border: 1px solid #ffffff4d;
  border-radius: 50px;
  padding: .5rem 1rem;
  transition: all .3s;
  font-size: .85rem;
  font-weight: 500;
}

.hero-tag:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--primary);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 6px;
  padding: .9rem 2rem;
  transition: all .3s;
  font-size: .9rem;
  font-weight: 600;
  box-shadow: 0 4px 6px #c628284d;
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px #c6282866;
}

.btn-secondary {
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--white);
  text-transform: uppercase;
  letter-spacing: .5px;
  background: none;
  border-radius: 6px;
  padding: .9rem 2rem;
  transition: all .3s;
  font-size: .9rem;
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

section {
  position: relative;
  padding: 5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  color: var(--black);
  letter-spacing: -.5px;
  position: relative;
  display: inline-block;
  margin-bottom: .8rem;
  font-size: 2.2rem;
  font-weight: 800;
}

.section-header .underline {
  background: var(--primary);
  border-radius: 2px;
  width: 60px;
  height: 3px;
  margin: 0 auto 1rem;
}

.section-header p {
  color: var(--gray-dark);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

#hakkimizda {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items:  center;
  gap: 4rem;
}

.about-content h3 {
  color: var(--black);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.about-content p {
  color: var(--gray-dark);
  text-align: justify;
  margin-bottom: 1.2rem;
  font-size: .95rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-box {
  background: var(--gray-light);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all .3s;
}

.feature-box:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px #0000000d;
}

.feature-box h4 {
  color: var(--primary);
  display: flex;
  align-items:  center;
  gap: .5rem;
  margin-bottom: .5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-box p {
  color: var(--gray-dark);
  margin: 0;
  font-size: .85rem;
}

#hizmetler {
  background: var(--gray-lighter);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  overflow: hidden;
  border-bottom: 3px solid #0000;
  border-radius: 10px;
  transition: all .3s;
  box-shadow: 0 4px 6px #00000005;
}

.service-card:hover {
  border-bottom-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px #00000014;
}

.service-icon {
  color: var(--primary);
  padding: 2rem 2rem 1rem;
  font-size: 2.5rem;
}

.service-content {
  padding: 0 2rem 2rem;
}

.service-content h3 {
  color: var(--black);
  margin-bottom: .8rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.service-content p {
  color: var(--gray-dark);
  font-size: .9rem;
  line-height: 1.6;
}

.parallax-section {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items:  center;
  width: 100%;
  min-height: 400px !important;
}

.parallax-section--gallery2 {
  background-image: url("/2-npvthht0.jpeg");
}

.parallax-section:before {
  content: "";
  position: absolute;
  position: fixed;
  z-index: -1;
  will-change: transform;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateZ(0);
}

.parallax-overlay {
  position: absolute;
  background: #0009;
  inset: 0;
}

.parallax-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding-top: 60px;
}

.parallax-content h2 {
  margin-bottom: .5rem;
  font-size: 2.5rem;
  font-weight: 800;
}

.parallax-content p {
  opacity: .9;
  font-size: 1.1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 10px #0000001a;
}

.gallery-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.references-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.reference-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  display: flex;
  border-radius: 12px;
  justify-content: center;
  align-items:  center;
  width: 200px;
  height: 140px;
  padding: 1rem;
  transition: all .3s;
  box-shadow: 0 5px 20px #00000026;
}

.reference-item img {
  object-fit: contain;
  border-radius: 4px;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  transition: transform .5s;
}

#filo {
  background: var(--white);
}

.fleet-highlight {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  margin-bottom: 3rem;
  padding: 3rem;
  box-shadow: 0 10px 30px #c6282833;
}

.fleet-highlight h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.fleet-highlight p {
  opacity: .9;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

footer {
  background: var(--black-light);
  color: #d1d5db;
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-section p, .footer-section a {
  color: #9ca3af;
  text-decoration: none;
  display: block;
  margin-bottom: .5rem;
  transition: color .3s;
  font-size: .9rem;
  line-height: 1.7;
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  color: #6b7280;
  border-top: 1px solid #ffffff1a;
  padding: 1.5rem 0;
  font-size: .85rem;
}

.fade-in {
  opacity: 0;
  transition: opacity .6s, transform .6s;
  transform: translateY(20px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  nav {
    padding: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    background: var(--white);
    display: none;
    border-top: 1px solid var(--gray-light);
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem;
    top: 100%;
    left: 0;
    box-shadow: 0 10px 20px #0000001a;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: block;
    color: var(--black);
    padding: .5rem 0;
  }

  .hero {
    height: 60vh;
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .about-features {
    gap: 1rem;
  }

  .feature-box {
    padding: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .fleet-text-content {
    padding: 1rem !important;
  }

  .parallax-content h1 {
    font-size: 3rem !important;
  }

  .hero-tags {
    gap: .5rem;
    margin: 1.5rem 0 2.5rem;
  }

  .hero-tag {
    padding: .3rem .5rem;
    font-size: .75rem;
    font-weight: 500;
  }

  .hero-content {
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    padding-top: 2rem;
    height: auto !important;
  }

  section {
    padding: 3rem 0;
  }

  .references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .reference-item {
    width: 100%;
  }

  .parallax-section {
    min-height: 300px;
  }

  .container {
    padding: 0 1rem;
  }
}

#iletisim {
  background: var(--gray-lighter);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info-box {
  background: var(--white);
  border-top: 4px solid var(--primary);
  border-radius: 12px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2.5rem;
  box-shadow: 0 10px 30px #0000000d;
}

.contact-info-box h3 {
  color: var(--black);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.contact-item {
  display: flex;
  border-bottom: 1px solid var(--gray-lighter);
  align-items:  flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  display: flex;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px #c6282833;
}

.contact-details h4 {
  color: var(--black);
  margin-bottom: .3rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-details p, .contact-details a {
  color: var(--gray-dark);
  text-decoration: none;
  display: block;
  font-size: .95rem;
  line-height: 1.6;
}

.contact-details a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--white);
  border-top: 4px solid var(--secondary);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px #0000000d;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--black);
  margin-bottom: .6rem;
  font-size: .95rem;
  font-weight: 600;
}

.form-group input, .form-group textarea, .form-group select {
  background: var(--gray-light);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  width: 100%;
  padding: 1rem;
  transition: all .3s;
  font-family: inherit;
  font-size: .95rem;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px #c628281a;
}

.submit-btn {
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: 1.2rem;
  transition: all .3s;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px #c628284d;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #c6282866;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-box, .contact-form {
    padding: 1.5rem;
  }
}

.fleet-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.fleet-image-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px #0000001a;
}

.fleet-image-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s;
}

.fleet-image-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .fleet-images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.floating-contacts {
  position: fixed;
  display: flex;
  z-index: 9999;
  width: 100%;
  bottom: 0;
  left: 0;
  box-shadow: 0 -4px 10px #0000001a;
}

.float-btn {
  display: flex;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  flex: 1;
  justify-content: center;
  align-items:  center;
  gap: 10px;
  height: 60px;
  transition: background-color .3s;
  font-size: 1.1rem;
  font-weight: 600;
}

.float-btn i {
  font-size: 1.4rem;
}

.float-btn:hover {
  color: #fff;
}

.float-btn.whatsapp {
  background-color: #25d366;
}

.float-btn.whatsapp:hover {
  background-color: #128c7e;
}

.float-btn.phone {
  background-color: #0d6efd;
}

.float-btn.phone:hover {
  background-color: #0b5ed7;
}

body {
  padding-bottom: 60px;
}

@media (min-width: 769px) {
  .floating-contacts {
    box-shadow: none;
    flex-direction: row;
    gap: 1rem;
    width: auto;
    bottom: 2rem;
    left: auto;
    right: 2rem;
  }

  .float-btn {
    border-radius: 50px;
    width: auto;
    height: 50px;
    padding: 0 1.5rem;
    box-shadow: 0 4px 15px #0003;
  }

  .float-btn:hover {
    transform: translateY(-2px);
  }

  body {
    padding-bottom: 0;
  }
}
