.main-content {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/hero1-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 120px 0;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.trust-bar {
  background: rgba(0, 109, 119, 0.1);
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-bar-content {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}

.about-intro-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.team-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.team-member-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
}

.member-info h4 {
  margin-bottom: 8px;
  color: var(--text-primary);
}

.member-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.member-bio {
  color: var(--text-secondary);
  line-height: 1.6;
}

.timeline-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  width: 45%;
  border: 1px solid var(--border-color);
}

.timeline-year {
  background: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.services-detailed-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 60px;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.service-block:nth-child(even) {
  background: var(--bg-secondary);
}

.service-block:nth-child(even) .service-content {
  order: 2;
}

.service-block:nth-child(even) .service-image {
  order: 1;
}

.service-content h3 {
  margin-bottom: 20px;
  color: var(--text-primary);
  font-size: 2rem;
}

.service-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.product-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.product-image {
  height: 200px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

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

.product-info {
  padding: 24px;
}

.product-info h4 {
  margin-bottom: 8px;
  color: var(--text-primary);
}

.product-origin {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 60px;
}

.case-study-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.case-study-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.case-study-title {
  color: var(--text-primary);
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.case-study-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.case-study-results {
  background: rgba(0, 109, 119, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.case-study-results p {
  margin: 0;
  font-weight: 600;
  color: var(--primary);
}

.contact-info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-details {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.contact-info h5 {
  margin-bottom: 4px;
  color: var(--text-primary);
}

.contact-info p {
  margin: 0;
  color: var(--text-secondary);
}

.team-contacts-section {
  background: var(--bg-secondary);
  padding: 60px 0;
}

.team-contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.team-contact-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.live-cargo-tracker {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  margin: 60px 0;
  border: 1px solid var(--border-color);
  text-align: center;
}

.route-map {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-radius: 8px;
  margin: 20px 0;
  overflow: hidden;
}

.route-line {
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--primary);
  transform: translateY(-50%);
}

.route-line::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
}

.route-line::after {
  content: '';
  position: absolute;
  top: -8px;
  right: 0;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
}

.cargo-status {
  background: rgba(214, 123, 78, 0.1);
  padding: 16px;
  border-radius: 8px;
  margin-top: 20px;
  color: var(--accent);
  font-weight: 600;
}

.quote-calculator {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-top: 40px;
}

.calculator-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.quote-result {
  background: rgba(0, 109, 119, 0.1);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.quote-result.show {
  display: block;
}

.quote-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.cultural-widget {
  text-align: center;
  padding: 32px;
  background: rgba(0, 109, 119, 0.05);
  border-radius: 12px;
  margin: 40px 0;
  border: 1px solid var(--border-color);
}

.slovak-proverb {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.proverb-translation {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .main-content {
    padding-top: 70px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .service-block:nth-child(even) .service-content,
  .service-block:nth-child(even) .service-image {
    order: unset;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: row;
    padding-left: 60px;
  }
  
  .timeline-content {
    width: 100%;
  }
  
  .timeline-year {
    left: 20px;
    transform: none;
  }
  
  .contact-info-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .calculator-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-spacing {
    padding: 50px 0;
  }
  
  .feature-card,
  .team-member-card,
  .contact-details,
  .quote-calculator {
    padding: 24px;
  }
}