@charset "UTF-8";
/**
 * papotransfer.sk Theme Styles
 * Modern car rental & transport website
 */
/**
 * Variables - papotransfer.sk
 * Color scheme inspired by modern car rental design
 */
/**
 * General Styles - papotransfer.sk
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #000000;
}

h1 {
  font-size: 3rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #ee4d9b;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: #ee4d9b;
  color: #ffffff;
  border: none;
}
.btn-primary:hover {
  background: #ea1e81;
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #71abc5;
  border: 2px solid #71abc5;
}
.btn-outline:hover {
  background: #71abc5;
  color: #ffffff;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.section {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

#page {
  padding-top: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  margin-bottom: 1rem;
}
.section-title p {
  color: #bebebe;
  font-size: 1.125rem;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #ffffff !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-lg {
  margin-top: 2rem;
}

.mb-lg {
  margin-bottom: 2rem;
}

body.menu-open {
  overflow: hidden;
}

/**
 * Header Styles - papotransfer.sk
 */
.site-header {
  background: transparent;
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    padding: 1.5rem 0;
  }
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
}
.scrolled .site-logo {
  color: #000000;
}
.site-logo:hover {
  color: #ee4d9b;
}
@media (max-width: 768px) {
  .site-logo {
    font-size: 1.25rem;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .header-right {
    gap: 1.5rem;
    margin-left: 0;
    justify-content: center;
    order: 3;
  }
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
@media (max-width: 768px) {
  .nav-menu {
    gap: 1.5rem;
  }
}

.nav-item a {
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.scrolled .nav-item a {
  color: #000000;
}
.nav-item a:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ee4d9b;
  transition: width 0.3s ease;
}
.nav-item a:hover, .nav-item a.active {
  color: #ee4d9b;
}
.nav-item a:hover:after, .nav-item a.active:after {
  width: 100%;
}
@media (max-width: 768px) {
  .nav-item a {
    font-size: 0.875rem;
  }
}

.header-cta {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header-cta .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
.mobile-menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.scrolled .mobile-menu-toggle span {
  background: #000000;
}
.mobile-menu-toggle span:nth-child(1) {
  top: 0px;
}
.mobile-menu-toggle span:nth-child(2) {
  top: 10px;
}
.mobile-menu-toggle span:nth-child(3) {
  top: 20px;
}
.mobile-menu-toggle.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
  background: #000000;
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
  background: #000000;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .header-right {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }
  .header-right.active {
    transform: translateX(0);
  }
  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .nav-item a {
    color: #000000;
    font-size: 1.25rem;
  }
  .header-cta {
    margin-top: 3rem;
  }
}
/**
 * Footer Styles - papotransfer.sk
 */
.site-footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.footer-brand .tagline {
  font-style: italic;
  color: #ee4d9b;
}

.footer-contact h4,
.footer-info h4 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.footer-contact ul,
.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li,
.footer-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-contact li,
.footer-info li {
    justify-content: center;
  }
}
.footer-contact a,
.footer-info a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}
.footer-contact a:hover,
.footer-info a:hover {
  color: #ee4d9b;
}
.footer-contact .icon,
.footer-info .icon {
  color: #ee4d9b;
  font-size: 1.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
}
.footer-bottom p {
  margin: 0;
}

.vat-notice {
  color: #ee4d9b;
  font-weight: 600;
  margin-top: 1rem;
}

/**
 * Page-specific Styles - papotransfer.sk
 */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/hero-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-section.preprava {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/hero2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
  }
}
.hero-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.hero-content {
  max-width: 700px;
  text-align: left;
}
.hero-content h1 {
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 768px) {
  .hero-content p {
    font-size: 1rem;
  }
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .hero-cta {
    flex-direction: column;
  }
}

.vehicles-section {
  background: #f1f1f1;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .vehicles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.vehicle-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.vehicle-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  background: #f1f1f1;
}

.vehicle-info {
  padding: 2rem;
}
.vehicle-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  color: #000000;
}
.vehicle-info .vehicle-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.vehicle-info .vehicle-specs span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f1f1f1;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
}

.pricing-table {
  background: #f1f1f1;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.pricing-table h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #ee4d9b;
}
.pricing-table .price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.pricing-table .price-row:last-child {
  border-bottom: none;
}
.pricing-table .price-row .label {
  color: #bebebe;
}
.pricing-table .price-row .price {
  font-weight: 700;
  color: #000000;
}

.vehicle-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.vehicle-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.vehicle-features li:before {
  content: "✓";
  color: #ee4d9b;
  font-weight: 700;
  font-size: 1.25rem;
}

.benefits-section {
  background: #f1f1f1;
  position: relative;
}
.benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #71abc5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 3rem 2rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.benefit-item:hover .icon-wrapper {
  transform: scale(1.1);
  background: #ee4d9b;
}
.benefit-item:hover .icon-wrapper svg {
  fill: #ffffff;
}
.benefit-item .icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(238, 77, 155, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.benefit-item .icon-wrapper svg {
  width: 40px;
  height: 40px;
  fill: #ee4d9b;
  transition: fill 0.3s ease;
}
.benefit-item .content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #000000;
}
.benefit-item .content p {
  margin: 0;
  color: #bebebe;
  line-height: 1.6;
}

.services-section {
  background: #f1f1f1;
}

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

.service-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.service-card:hover .service-icon svg {
  transform: scale(1.1);
}
.service-card .service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}
.service-card .service-icon svg {
  width: 100%;
  height: 100%;
  color: #ee4d9b;
  transition: transform 0.3s ease;
}
.service-card h3 {
  margin-bottom: 1.5rem;
}
.service-card ul {
  list-style: none;
  padding: 0;
}
.service-card ul li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}
.service-card ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ee4d9b;
  font-weight: 700;
}

.cta-block {
  background: #71abc5;
  color: #ffffff;
  padding: 4rem;
  border-radius: 24px;
  text-align: center;
  margin-top: 3rem;
}
.cta-block h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cta-block p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.cta-block .cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cta-block .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.banner-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 500px;
}
.banner-section .container {
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
.banner-section h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.banner-section p {
  color: #ffffff;
}
.banner-section .btn {
  background: #ffffff;
  color: #ee4d9b;
}
.banner-section .btn:hover {
  background: #f1f1f1;
  color: #000000;
}
