/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@500;700;900&display=swap');

:root {
  --primary: #0050ff; /* Mavi - logodan */
  --secondary: #ffb400; /* Turuncu/Sarı - logodan */
  --dark-bg: #06061c;
  --darker-bg: #030312;
  --text-light: #f1f5f9;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --border-light: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(6, 6, 28, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

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

.logo-icon svg {
  width: 40px;
  height: 40px;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-text span {
  color: var(--secondary);
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #cdd6f1;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--secondary);
}

nav a:hover::after {
  width: 100%;
}

.btn-contact-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-contact-nav::after {
  display: none;
}

.btn-contact-nav:hover {
  background: var(--secondary);
  color: var(--dark-bg) !important;
  box-shadow: 0 0 20px rgba(255, 180, 0, 0.4);
  transform: translateY(-2px);
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-left: 15px;
}

.lang-dropdown-toggle {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.lang-dropdown:hover .lang-dropdown-toggle {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

.lang-dropdown-menu {
  position: absolute;
  top: 130%;
  right: 0;
  background: rgba(10, 10, 30, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  min-width: 140px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 100;
}

.lang-dropdown:hover .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lang-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1.2rem !important;
  color: var(--text-light) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  text-decoration: none;
  transition: all 0.2s ease !important;
}

.lang-dropdown-menu a::after {
  display: none !important;
}

.lang-dropdown-menu a:hover, .lang-dropdown-menu a.active {
  background: rgba(255,255,255,0.05);
  color: var(--white) !important;
}

.lang-dropdown-menu a.active {
  color: var(--secondary) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: radial-gradient(circle at top right, #001e66 0%, var(--darker-bg) 60%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-overlay-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 180, 0, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(255, 180, 0, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 4.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero h1 span {
  color: var(--secondary);
  position: relative;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 80, 255, 0.4);
  background: #0040cc;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  gap: 10px;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.hero-image-wrapper {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 55%;
  height: 80%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  /* Mask gradient for smooth fading to dark blue */
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%);
  mask-image: linear-gradient(to right, transparent, black 15%);
  opacity: 0.8;
}

/* Float Animation for Truck/Van Placeholder */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.hero-img-truck {
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 600px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
}

/* Services */
.services {
  padding: 8rem 5%;
  background: var(--dark-bg);
  position: relative;
}

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

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.95rem;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 180, 0, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 180, 0, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
  background: var(--secondary);
  color: var(--dark-bg);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-card p {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact/Call to Action */
.cta-section {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--primary) 0%, #002277 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  margin: 0 5% 5rem 5%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 80, 255, 0.2);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.cta-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-button {
  position: relative;
  z-index: 1;
}

.btn-cta {
  background: var(--secondary);
  color: var(--dark-bg);
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 180, 0, 0.4);
}

/* Footer */
footer {
  background: var(--darker-bg);
  padding: 5rem 5% 2rem;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about p {
  color: var(--text-muted);
  margin-top: 1.5rem;
  max-width: 300px;
}

.footer-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
}

.footer-links list-style {
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact .icon {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  color: var(--white);
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .hero-img-truck { width: 400px; right: 5%; bottom: 15%; }
  .cta-section { flex-direction: column; text-align: center; gap: 2rem; padding: 4rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; align-items: center; justify-content: center; }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(6, 6, 28, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  nav ul { 
    display: flex; 
    flex-direction: column; 
    gap: 0; 
    padding: 1rem 8% 1.5rem;
    text-align: center;
  }
  
  nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  nav ul li a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1rem;
  }
  
  .btn-contact-nav {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    text-align: center;
    min-width: 160px;
    padding: 0.6rem 1.5rem;
  }
  
  .lang-dropdown { margin-left: 0; margin-top: 1rem; width: 100%; }
  .lang-dropdown-toggle { justify-content: center; }
  .lang-dropdown-menu { position: relative; top: 0; border: none; background: rgba(0,0,0,0.2); transform: none; box-shadow: none; display: none; }
  .lang-dropdown:hover .lang-dropdown-menu, .lang-dropdown.active .lang-dropdown-menu { display: block; visibility: visible; opacity: 1; }

  .hero { padding-top: 150px; }
  .hero h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-img-truck { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .contact-page > div > div { grid-template-columns: 1fr !important; }
}
