/* ============================================================================
   ICTS LOGISTIC WEBSITE — Complete CSS Stylesheet
   ============================================================================ */

/* ============================================================================
   1. CSS VARIABLES & ROOT
   ============================================================================ */

:root {
  --navy: #0F2444;
  --brand: #1D5292;
  --brand-light: #2A6AB5;
  --red: #ED1B24;
  --red-dark: #C41720;
  --white: #FFFFFF;
  --text-primary: #1A2744;
  --text-secondary: #5A6A84;
  --bg-main: #F2F5F9;
  --bg-alt: #E8EDF4;
  --border: #CBD5E1;
  --divider: #D0D9E8;
  --success: #059669;
  --info: #0891B2;
  --warning: #DC2626;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --spacing-section: 120px;
  --spacing-section-mobile: 80px;
  --spacing-card: 40px;
  --border-radius: 4px;
  --transition: 0.3s ease;
}

/* ============================================================================
   2. RESET & BASE STYLES
   ============================================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

a:hover {
  color: var(--brand-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* --- Accessibility: Focus styles (WCAG 2.2 SC 2.4.7) --- */
*:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}

/* --- Accessibility: Skip link (WCAG 2.2 SC 2.4.1) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 8px;
  color: var(--white);
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

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

/* ============================================================================
   3. NAVIGATION — WHITE BACKGROUND
   ============================================================================ */

.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white);
  z-index: 1000;
  border-bottom: 1px solid var(--divider);
  box-shadow: 0 1px 8px rgba(15, 36, 68, 0.04);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}

.nav__logo-img {
  height: 72px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav__logo-text span.red {
  color: var(--red);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav__links a {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--brand);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--transition);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.lang-switch {
  display: flex;
  gap: 0;
  align-items: center;
  border-left: 1px solid var(--divider);
  padding-left: 24px;
  margin-left: 24px;
}

.lang-switch a {
  padding: 6px 12px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all var(--transition);
}

.lang-switch a.active {
  color: var(--white);
  background-color: var(--brand);
  border-radius: 2px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.nav__burger span {
  width: 25px;
  height: 3px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1060px) {
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }

  .nav__links.open {
    display: flex;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .nav__links a {
    padding: 12px 24px;
    display: block;
    border-bottom: 1px solid var(--bg-main);
  }

  .nav__links a::after {
    display: none;
  }

  .lang-switch {
    display: flex;
    border: none;
    padding: 0;
    margin: 0;
    gap: 0;
  }

  .nav__burger {
    display: flex;
  }
}

/* ============================================================================
   4. HERO SECTION
   ============================================================================ */

.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: linear-gradient(45deg, rgba(29, 82, 146, 0.1) 1px, transparent 1px),
              linear-gradient(-45deg, rgba(29, 82, 146, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.hero h1 {
  font-size: 56px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--white);
}

.hero h1 span {
  color: rgba(255, 255, 255, 0.75);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero .btn {
  display: inline-block;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 50px;
  }

  .hero h1 {
    font-size: 36px;
  }

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

/* ============================================================================
   5. SECTIONS — General Styles
   ============================================================================ */

.section {
  padding: var(--spacing-section) 0;
}

.section--alt {
  background-color: var(--bg-main);
}

@media (max-width: 768px) {
  .section {
    padding: var(--spacing-section-mobile) 0;
  }
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section__label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand);
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}

.section__header {
  margin-bottom: 60px;
  text-align: center;
}

.section__header h2 {
  font-size: 40px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
}

.section__header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .section__header {
    margin-bottom: 40px;
  }

  .section__header h2 {
    font-size: 28px;
  }
}

/* ============================================================================
   6. BUTTONS
   ============================================================================ */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

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

.btn--secondary {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--secondary:hover {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
}

.btn--outline {
  background-color: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn--outline:hover {
  background-color: var(--brand);
  color: var(--white);
}

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

.btn--white:hover {
  background-color: var(--bg-main);
  border-color: var(--bg-main);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
  min-height: 44px;
}

/* ============================================================================
   7. CARDS & GRIDS
   ============================================================================ */

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  padding: var(--spacing-card);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 16px;
  color: var(--navy);
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  padding: var(--spacing-card);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--brand);
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  padding: 30px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Infographic variant */
.values-grid--infographic {
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.value-card--infographic {
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 32px 24px 28px;
  position: relative;
}

.value-card--infographic:hover {
  box-shadow: none;
  transform: none;
  background: var(--bg-main);
}

.value-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.value-card__icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.value-card--infographic h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value-card--infographic p {
  font-size: 0.85rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .values-grid--infographic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .values-grid--infographic {
    grid-template-columns: 1fr;
  }
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.stat__label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

/* Docs Grid */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.doc-card {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  padding: var(--spacing-card);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.doc-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.doc-card__icon {
  font-size: 3rem;
  color: var(--brand);
  margin-bottom: 16px;
}

.doc-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.doc-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.doc-card .btn {
  font-size: 14px;
  padding: 10px 20px;
  min-height: 44px;
  min-width: 44px;
}

/* Certs Grid */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.cert-card {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 2px solid var(--brand);
  padding: var(--spacing-card);
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cert-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.cert-card__badge {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cert-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.cert-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.cert-card__thumb {
  display: block;
  margin-bottom: 16px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--border);
}

.cert-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition);
}

.cert-card__thumb:hover img {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--border-radius);
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* Legal Content (Cookie Policy, etc.) */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bg-alt);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  color: var(--brand);
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 12px;
  padding-left: 24px;
}

.legal-content li {
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 4px;
}

.legal-content a {
  color: var(--brand);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--brand-light);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}

.legal-table th {
  background: var(--bg-alt);
  color: var(--navy);
  font-weight: 600;
}

.legal-table td {
  color: var(--text-primary);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-info {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-info__icon {
  font-size: 2rem;
  color: var(--brand);
  margin-bottom: 12px;
}

.contact-info h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-info a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: var(--brand-light);
}

/* ============================================================================
   8. DETAIL SECTION
   ============================================================================ */

.detail-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.detail-section__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.detail-section h2 {
  font-size: 32px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0;
}

.detail-section__description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.detail-section__list {
  list-style: none;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
}

.detail-section__list li {
  color: var(--text-primary);
  padding-left: 28px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
}

.detail-section__list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-size: 1.1rem;
}

/* Legacy detail-section styles */
.detail-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.detail-section p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.detail-section ul {
  list-style: none;
  margin-bottom: 24px;
}

.detail-section ul li {
  color: var(--text-primary);
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-size: 1.05rem;
}

.detail-section ul li::before {
  content: '▪';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-size: 1.1rem;
}

.detail-section__image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .detail-section {
    padding: 24px;
  }

  .detail-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-section h2 {
    font-size: 24px;
  }

  .detail-section__list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   8b. REGISTRATION CARD (O nás)
   ============================================================================ */

.reg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}

.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.reg-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reg-item__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.reg-item__value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.reg-item__value a {
  color: var(--brand);
  font-weight: 600;
}

.reg-item__value a:hover {
  color: var(--brand-light);
}

@media (max-width: 768px) {
  .reg-grid {
    grid-template-columns: 1fr;
  }

  .reg-card {
    padding: 24px;
  }
}

/* ============================================================================
   PHOTO CREDITS (6th doc card)
   ============================================================================ */

.doc-card--credits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.55;
}

.photo-credits__title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.photo-credits__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ============================================================================
   9. CTA SECTION
   ============================================================================ */

.cta-section {
  background: var(--brand);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
              linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

.cta-section__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-section .btn--outline {
  border-color: var(--white);
  color: var(--white);
  font-size: 16px;
  padding: 16px 36px;
}

.cta-section .btn--outline:hover {
  background-color: var(--white);
  color: var(--brand);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

/* ============================================================================
   10. FOOTER
   ============================================================================ */

.footer {
  background: var(--white);
  color: var(--text-secondary);
  padding: 60px 0 80px;
  border-top: 3px solid var(--brand);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer__section h3 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.footer__section ul {
  list-style: none;
}

.footer__section ul li {
  margin-bottom: 12px;
}

.footer__section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__section a:hover {
  color: var(--brand);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 48px;
  width: auto;
}

.footer__logo-text {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* footer__bottom styles moved to section 23 */

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 15px;
  }
}

/* ============================================================================
   11. FORMS
   ============================================================================ */

.contact-form {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-hint {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-hint h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.contact-hint__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-hint__list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-hint__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.contact-langs {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.contact-langs h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-langs p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(29, 82, 146, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
}

.form-group--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.form-group--checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--brand);
}

.req {
  color: var(--red);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--red);
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  display: none;
}

.form-status--success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-status--error {
  display: block;
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 20px;
  }
}

/* ============================================================================
   12. SECTION — STATS
   ============================================================================ */

.section--stats {
  background: var(--navy);
  color: var(--white);
  padding: var(--spacing-section) 0;
  position: relative;
  overflow: hidden;
}

.section--stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
              linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.section--stats .section__header {
  position: relative;
  z-index: 2;
}

.section--stats .section__header h2 {
  color: var(--white);
}

.section--stats .section__header p {
  color: rgba(255, 255, 255, 0.8);
}

.section--stats .stats-grid {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .section--stats {
    padding: var(--spacing-section-mobile) 0;
  }
}

/* ============================================================================
   13. MAP CONTAINER
   ============================================================================ */

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}

/* Section 14 — Cookie styles moved to section 24 below */

/* ============================================================================
   15. MODAL
   ============================================================================ */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal__content {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.modal__close:hover {
  color: var(--text-primary);
}

.modal h2 {
  margin-bottom: 20px;
  color: var(--navy);
}

.modal p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.modal .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .modal__content {
    padding: 30px 20px;
  }
}

/* ============================================================================
   16. UTILITIES
   ============================================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* ============================================================================
   17. ANIMATIONS
   ============================================================================ */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

/* ============================================================================
   18. SPECIALIZATION CARDS (Čo prepravujeme)
   ============================================================================ */

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.spec-card {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.spec-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: var(--brand);
}

.spec-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-main);
  color: var(--brand);
  margin-bottom: 20px;
}

.spec-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.spec-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================================
   19. STATS SECTION (home page)
   ============================================================================ */

.stats {
  background: var(--brand);
  padding: 40px 0;
  overflow: hidden;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
}

.stats .stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 20px 16px;
  min-width: 0;
}

.stats .stat h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.stats .stat p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1100px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   20. HERO BUTTONS
   ============================================================================ */

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 32px;
}

/* ============================================================================
   21. LINK ARROW
   ============================================================================ */

.link-arrow {
  display: inline-block;
  margin-top: 12px;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.link-arrow:hover {
  color: var(--brand-light);
}

/* ============================================================================
   22. SECTION WHITE VARIANT
   ============================================================================ */

.section--white {
  background: var(--bg-main);
}

/* ============================================================================
   23. FOOTER FIX — brand area
   ============================================================================ */

.footer__brand {
  margin-bottom: 16px;
}

.footer__brand img {
  height: 56px;
  width: auto;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: var(--text-secondary);
  transition: color var(--transition);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--brand);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--brand);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================================================
   24. COOKIE BANNER & MODAL — Complete Styles
   ============================================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 20px;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.cookie-banner__inner p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
}

.cookie-banner__inner a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  min-height: 44px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-btn--accept {
  background: var(--brand);
  color: var(--white);
}

.cookie-btn--accept:hover {
  background: var(--brand-light);
}

.cookie-btn--reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn--reject:hover {
  border-color: var(--white);
}

.cookie-btn--settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: none;
  text-decoration: underline;
}

.cookie-btn--settings:hover {
  color: var(--white);
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal__content {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal__content h3 {
  color: var(--navy);
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 0.95rem;
}

.cookie-category label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  cursor: pointer;
}

.cookie-category p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 6px;
  margin-bottom: 0;
}

.cookie-modal__buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.cookie-modal__buttons .cookie-btn {
  flex: 1;
  text-align: center;
}

.cookie-modal__buttons .cookie-btn--settings {
  color: var(--text-primary);
  border: 1px solid var(--border);
  text-decoration: none;
}

.cookie-modal__buttons .cookie-btn--settings:hover {
  background: var(--bg-main);
}

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .cookie-modal__content {
    padding: 24px;
  }

  .cookie-modal__buttons {
    flex-direction: column;
  }
}


/* ============================================================================
   SERVICE CARDS WITH PHOTO — index.html Naše služby
   ============================================================================ */

.service-card--photo {
  padding: 0;
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card--photo:hover {
  transform: translateY(-4px);
}

.service-card__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
  /* убираем любые отступы от краёв */
  margin: 0;
}

.service-card__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card--photo h3 {
  text-align: left;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card--photo p {
  text-align: left;
  flex: 1;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.service-card--photo .link-arrow {
  margin-top: auto;
}

@media (max-width: 768px) {
  .service-card__body {
    padding: 16px 18px 20px;
  }
}

/* ============================================================================
   CARGO INFOGRAPHIC — Čo prepravujeme (index.html)
   ============================================================================ */

.cargo-infographic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.cargo-cell {
  background: var(--white);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: background var(--transition);
}

.cargo-cell:hover {
  background: var(--bg-main);
}

.cargo-cell__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.cargo-accent--blue  { background: var(--brand); }
.cargo-accent--navy  { background: var(--navy); }
.cargo-accent--steel { background: #4A6FA5; }
.cargo-accent--red   { background: #C0392B; }
.cargo-accent--teal  { background: #1A7A6E; }
.cargo-accent--gray  { background: #8A9BB0; }

.cargo-cell__visual {
  width: 80px;
  height: 60px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cargo-cell__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.3;
}

.cargo-cell__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

.cargo-tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--bg-alt);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.cargo-tag--blue {
  background: #e8f0fb;
  color: var(--brand);
  border-color: #b8cef0;
}

.cargo-tag--red {
  background: #fdecea;
  color: #C0392B;
  border-color: #f5b7b1;
}

.cargo-tag--navy {
  background: #e6eaf2;
  color: var(--navy);
  border-color: #b0bdd4;
}

@media (max-width: 900px) {
  .cargo-infographic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .cargo-infographic {
    grid-template-columns: 1fr;
  }
  .cargo-cell {
    padding: 20px 16px 18px;
  }
}


/* ============================================================================
   HERO SPLIT — текст слева, фото справа, выровнено по container
   ============================================================================ */

.hero--split { padding: 0; overflow: hidden; }

.hero__split-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.hero__split-text {
  padding: 80px 40px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__split-photo {
  overflow: hidden;
  padding: 40px 0;
  display: flex;
  align-items: stretch;
}

.hero__split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2px;
}

@media (max-width: 1060px) {
  .hero__split-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__split-text { padding: 60px 0 50px; }
  .hero__split-photo { display: none; }
}

/* ============================================================================
   STATS PILLS — карточки под hero
   ============================================================================ */

.stat__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}

.stat__pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 6px 12px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  white-space: nowrap;
  line-height: 1.2;
  text-transform: uppercase;
}

/* ============================================================================
   SERVICE PHOTO CARDS — sluzby.html full-width cards
   ============================================================================ */

.service-anchor {
  display: block;
  position: relative;
  top: calc(-1 * var(--nav-height) - 20px);
  visibility: hidden;
}

.service-photo-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-photo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--transition);
}

.service-photo-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Alternate: even cards — photo on the right */
.service-photo-card:nth-child(even) {
  direction: rtl;
}

.service-photo-card:nth-child(even) > * {
  direction: ltr;
}

.service-photo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 340px;
  background: var(--bg-main);
}

.service-photo-card__body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-photo-card__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.service-photo-card__body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-photo-card__body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-photo-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-photo-card__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-photo-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
}

.service-photo-card__list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .service-photo-card {
    grid-template-columns: 1fr;
  }

  .service-photo-card:nth-child(even) {
    direction: ltr;
  }

  .service-photo-card__img {
    min-height: 200px;
    height: auto;
    object-position: center !important;
  }

  .service-photo-card__body {
    padding: 32px 24px;
  }

  .service-photo-card__body h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .service-photo-grid {
    gap: 32px;
  }

  .service-photo-card__img {
    min-height: 180px;
    height: auto;
  }

  .service-photo-card__body {
    padding: 24px 20px;
  }
}

/* ============================================================================
   SPEC CARDS WITH PHOTO OVERLAY — Čo prepravujeme (sluzby.html)
   ============================================================================ */

.spec-card--photo {
  position: relative;
  background-size: cover;
  background-position: center;
  border: none;
  padding: 0;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  text-align: left;
}

.spec-card--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 36, 68, 0.88) 0%,
    rgba(15, 36, 68, 0.55) 50%,
    rgba(15, 36, 68, 0.25) 100%
  );
  z-index: 1;
  transition: background var(--transition);
}

.spec-card--photo:hover::before {
  background: linear-gradient(
    to top,
    rgba(15, 36, 68, 0.92) 0%,
    rgba(15, 36, 68, 0.6) 50%,
    rgba(15, 36, 68, 0.3) 100%
  );
}

.spec-card--photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.spec-card--photo .spec-card__content {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
  text-align: center;
}

.spec-card--photo h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.spec-card--photo p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============================================================================
   ABOUT PHOTO BLOCK — o-nas.html "Náš príbeh"
   ============================================================================ */

.about-photo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.about-photo-block__img-wrap {
  overflow: hidden;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.about-photo-block__img {
  width: 100%;
  flex: 1;
  min-height: 0;
  display: block;
  border-radius: var(--border-radius);
  object-fit: cover;
  object-position: 15% center;
}

.about-photo-block__title {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-photo-caption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
}

.about-photo-block__text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-photo-block__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-photo-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================================
   REGISTRATION CARD — o-nas.html právne údaje
   ============================================================================ */

.reg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.reg-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reg-item__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.reg-item__value {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.reg-item__value a {
  color: var(--brand);
  transition: color var(--transition);
}

.reg-item__value a:hover {
  color: var(--brand-light);
}

@media (max-width: 768px) {
  .reg-card {
    padding: 24px;
  }

  .reg-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================================
   25. PRINT STYLES
   ============================================================================ */

@media print {
  .nav,
  .footer,
  .cookie-banner {
    display: none;
  }

  body {
    background: var(--white);
  }

  a {
    color: var(--brand);
  }
}

