/* EM TRANS - Vanilla HTML/CSS Version */
/* Swiss Style Design with Navy Blue + Coral Accent */

:root {
  /* Colors */
  --primary: #0A2342;
  --primary-light: #1a3a5c;
  --accent: #FF6B6B;
  --accent-light: #ff8585;
  --background: #ffffff;
  --foreground: #1a1a1a;
  --muted: #f5f5f5;
  --muted-foreground: #666666;
  --border: #e0e0e0;
  --white: #ffffff;
  --black: #000000;

  /* Typography */
  --font-display: "Unbounded", sans-serif;
  --font-body: "Public Sans", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Transitions */
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-box {
  background: var(--primary);
  color: var(--white);
  padding: var(--spacing-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.logo-text h2 {
  font-size: 1.125rem;
  margin: 0;
  line-height: 1;
}

.logo-text p {
  font-size: 0.625rem;
  color: var(--muted-foreground);
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Navigation */
nav {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

nav button {
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: var(--foreground);
  transition: var(--transition);
  padding: var(--spacing-sm) 0;
}

nav button:hover {
  color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
}

.lang-switcher button {
  flex: 1;
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.lang-switcher button.active {
  background: var(--primary);
  color: var(--white);
}

.lang-switcher button:not(.active):hover {
  background: var(--muted);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--foreground);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: var(--spacing-md);
  flex-direction: column;
  gap: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu button {
  text-align: left;
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.125rem;
  font-weight: 500;
}

.mobile-menu button:last-child {
  border-bottom: none;
}

/* Main Content */
main {
  margin-top: 80px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-logistics.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7), transparent);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  animation: slideInLeft 0.7s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  border: 1px solid rgba(10, 35, 66, 0.3);
  background: rgba(10, 35, 66, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  width: fit-content;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
}

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

.hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

/* Buttons */
.btn {
  padding: var(--spacing-md) var(--spacing-lg);
  border: none;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
}

.btn-outline {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background: rgba(10, 35, 66, 0.05);
}

/* Decorative Elements */
.hero-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 33.33%;
  height: 8px;
  background: var(--primary);
  z-index: 2;
}

.hero-decoration-2 {
  position: absolute;
  bottom: 0;
  right: 33.33%;
  width: 33.33%;
  height: 8px;
  background: var(--foreground);
  z-index: 2;
}

/* Services Section */
.services {
  padding: var(--spacing-2xl) 0;
  background: rgba(245, 245, 245, 0.5);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--spacing-2xl);
  gap: var(--spacing-lg);
}

.section-header h2 {
  margin-bottom: var(--spacing-md);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin-bottom: 0;
}

.section-divider {
  display: none;
  width: 128px;
  height: 4px;
  background: var(--primary);
}

@media (min-width: 768px) {
  .section-divider {
    display: block;
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-lg);
}

.service-number {
  font-size: 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(26, 26, 26, 0.1);
  transition: var(--transition);
}

.service-card:hover .service-number {
  color: rgba(255, 107, 107, 0.2);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  transition: var(--transition);
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  color: var(--muted-foreground);
  margin-bottom: 0;
  flex-grow: 1;
}

.service-image {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border);
}

.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition);
}

.service-card:hover .service-image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Fleet Section */
.fleet {
  padding: var(--spacing-2xl) 0;
  background: var(--foreground);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.fleet::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
  pointer-events: none;
}

.fleet .container {
  position: relative;
  z-index: 1;
}

.fleet-header {
  margin-bottom: var(--spacing-2xl);
}

.fleet-badge {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.fleet h2 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.fleet-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
}

/* Fleet Types Grid */
.fleet-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: var(--spacing-2xl);
}

.fleet-type {
  background: var(--foreground);
  padding: var(--spacing-lg);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.fleet-type:hover {
  background: rgba(255, 255, 255, 0.05);
}

.fleet-type:last-child {
  border-right: none;
}

.fleet-type h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  transition: var(--transition);
}

.fleet-type:hover h3 {
  color: var(--accent);
}

.fleet-type-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
  margin-bottom: var(--spacing-sm);
}

.fleet-type-capacity {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
}

/* Fleet Stats */
.fleet-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.fleet-stat {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.fleet-stat-own {
  background: var(--accent);
}

.fleet-stat-partners {
  background: rgba(255, 255, 255, 0.1);
}

.fleet-stat h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0;
}

.fleet-stat-value {
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about {
  padding: var(--spacing-2xl) 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.about-text h2 {
  margin-bottom: var(--spacing-md);
}

.about-text h2 .accent {
  color: var(--primary);
}

.about-text p {
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-md);
}

.about-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.about-section {
  border-left: 4px solid var(--primary);
  padding-left: var(--spacing-lg);
}

.about-section.secondary {
  border-left-color: var(--border);
}

.about-section h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.about-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.about-section li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.about-section li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.about-section.secondary li::before {
  color: var(--muted-foreground);
}

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  aspect-ratio: 1;
  background: var(--muted);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-decoration-1 {
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 66.66%;
  height: 66.66%;
  background: var(--primary);
  z-index: 0;
}

.about-image-decoration-2 {
  position: absolute;
  top: -32px;
  right: -32px;
  width: 66.66%;
  height: 66.66%;
  border: 4px solid var(--foreground);
  z-index: 0;
}

/* Advantages Section */
.advantages {
  padding: var(--spacing-2xl) 0;
  background: rgba(245, 245, 245, 0.5);
}

.advantages h2 {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.advantage-card {
  background: var(--white);
  padding: var(--spacing-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.advantage-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.advantage-card::before {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--primary);
  margin-bottom: var(--spacing-md);
}

.advantage-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.advantage-card p {
  color: var(--muted-foreground);
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  padding: var(--spacing-2xl) 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
}

.contact-info h2 {
  margin-bottom: var(--spacing-md);
}

.contact-info > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-2xl);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-item {
  display: flex;
  gap: var(--spacing-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(10, 35, 66, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.contact-item h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
}

.contact-item p {
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.contact-item a {
  color: var(--muted-foreground);
}

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

/* Contact Form */
.contact-form {
  background: rgba(245, 245, 245, 0.5);
  padding: var(--spacing-2xl);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group button {
  width: 100%;
  padding: var(--spacing-md);
  background: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.form-group button:hover {
  background: var(--primary-light);
}

/* Footer */
footer {
  background: var(--foreground);
  color: var(--white);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-section a,
.footer-section button {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0;
}

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

.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  text-align: center;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .about-sections {
    grid-template-columns: 1fr;
  }

  .fleet-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    height: auto;
    padding: var(--spacing-md) 0;
  }

  .header-content {
    padding: 0 var(--spacing-md);
  }

  nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
  }

  main {
    margin-top: auto;
  }

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

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

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .fleet-types {
    grid-template-columns: 1fr;
  }

  .fleet-type {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-md);
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    min-height: 70vh;
  }

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

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