/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 180px 0 120px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/><circle cx="20" cy="20" r="0.5" fill="white" opacity="0.05"/><circle cx="80" cy="30" r="0.8" fill="white" opacity="0.08"/></svg>');
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-100px);
  }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

/* Story Section */
.story {
  padding: 100px 0;
  background: #f8fafc;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
}

.story p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.story-visual {
  background: linear-gradient(135deg, #1e293b, #334155);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.story-visual::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.truck-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #60a5fa;
}

/* Timeline */
.timeline {
  padding: 100px 0;
  background: white;
}

.timeline h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 3rem;
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 50%;
  padding-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  padding-left: 2rem;
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 2rem;
  width: 16px;
  height: 16px;
  background: #3b82f6;
  border: 4px solid white;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.timeline-year {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

/* Values */
.values {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
}

.values h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #60a5fa;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* CTA */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-btn {
  background: white;
  color: #1d4ed8;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* TABLET VE MOBİL RESPONSIVE STYLES */
@media screen and (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }

  .story h2,
  .timeline h2,
  .values h2,
  .cta h2 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .story-grid {
    gap: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* TABLET RESPONSIVE */
@media screen and (max-width: 768px) {
  /* Hero Mobile */
  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
  }

  .stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .stat {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Story Mobile */
  .story {
    padding: 80px 0;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .story p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .feature {
    padding: 1.2rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .story-visual {
    padding: 2.5rem;
    order: -1;
  }

  .truck-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  /* Timeline Mobile */
  .timeline {
    padding: 80px 0;
  }

  .timeline h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .timeline-line {
    left: 30px;
    transform: translateX(0);
  }

  .timeline-item {
    padding-left: 60px;
    padding-right: 0;
    margin-bottom: 2.5rem;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin: 0;
    padding: 1.5rem;
  }

  .timeline-dot {
    left: 30px;
    transform: translateX(-50%);
  }

  .timeline-title {
    font-size: 1.1rem;
  }

  .timeline-year {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  /* Values Mobile */
  .values {
    padding: 80px 0;
  }

  .values h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 2rem;
  }

  .value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .value-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  /* CTA Mobile */
  .cta {
    padding: 60px 0;
  }

  .cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .cta-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 480px) {
  /* Hero Extra Small Mobile */
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 95%;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .stat {
    padding: 1.2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  /* Story Extra Small Mobile */
  .story {
    padding: 60px 0;
  }

  .story h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }

  .story p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .features {
    margin-top: 1.2rem;
  }

  .feature {
    padding: 1rem;
  }

  .feature h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .feature p {
    font-size: 0.85rem;
  }

  .story-visual {
    padding: 2rem;
  }

  .story-visual h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .story-visual p {
    font-size: 0.9rem;
  }

  .truck-icon {
    font-size: 2.5rem;
  }

  /* Timeline Extra Small Mobile */
  .timeline {
    padding: 60px 0;
  }

  .timeline h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .timeline-line {
    left: 25px;
  }

  .timeline-item {
    padding-left: 50px;
    margin-bottom: 2rem;
  }

  .timeline-content {
    padding: 1.2rem;
  }

  .timeline-dot {
    left: 25px;
    width: 12px;
    height: 12px;
  }

  .timeline-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Values Extra Small Mobile */
  .values {
    padding: 60px 0;
  }

  .values h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  .value-icon {
    font-size: 2.2rem;
  }

  .value-title {
    font-size: 1.2rem;
  }

  .value-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* CTA Extra Small Mobile */
  .cta {
    padding: 50px 0;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

/* VERY SMALL SCREENS */
@media screen and (max-width: 360px) {
  .hero {
    padding: 85px 0 50px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .story h2,
  .timeline h2,
  .values h2,
  .cta h2 {
    font-size: 1.6rem;
  }

  .timeline-item {
    padding-left: 45px;
  }

  .timeline-line,
  .timeline-dot {
    left: 20px;
  }
}

/* LANDSCAPE ORIENTATION FIX */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
  }

  .stat {
    padding: 1rem;
  }
}

/* HIGH DPI SCREENS */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .nav-logo-area img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* TOUCH IMPROVEMENTS */
@media (hover: none) and (pointer: coarse) {
  .cta-btn,
  .stat,
  .feature,
  .value-card {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scrolling-text {
    animation: none;
  }

  .hero::before {
    animation: none;
  }

  .story-visual::before {
    animation: none;
  }
}
