:root {
  /* colors */
  --clr-primary: #e01e20;
  --clr-secondary: #655f74;
  --clr-accent: #ff5f5f;
  --clr-white: #fff;
  --clr-black: #141414;
  --def-gradient: linear-gradient(
    90deg,
    rgba(224, 30, 32, 1) 0%,
    rgba(101, 95, 116, 1) 100%
  );

  /* gaps */
  --gap8: 8px;
  --gap16: 16px;
  --gap24: 24px;
  --gap32: 32px;
  --gap48: 48px;
  --gap64: 64px;

  /* fonts */
  --fw400: 400;
  --fw600: 600;
  --fw800: 800;
  --fw900: 900;

  --fs16: 16px;
  --fs24: 24px;
  --fs48: clamp(2rem, 1.8rem + 1vw, 3rem);
  --fs64: clamp(3rem, 2.8rem + 1vw, 4rem);

  /* border radius */
  --br24: 24px;

  /* border-radius */
  --def-br: 24px;

  /* box shadows */

  --def-bs: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

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

*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-optical-sizing: auto;
  font-weight: var(--fw400);
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: #333;
  background-color: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--fw800);
  line-height: 1.2;
  /* margin-bottom: 0.5em; */
  color: inherit;
}

h1 {
  font-size: 48px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}

/* section Title */
.sectionTitle {
  color: var(--clr-black);
  font-size: clamp(2rem, 1.9rem + 0.5vw, 3rem);
  font-weight: var(--fw800);
  letter-spacing: 4%;
  /* margin-bottom: 32px;*/
}

.sectionTitle-center {
  display: flex;
  flex-direction: column;
  gap: var(--gap16);
  align-items: center;
  text-align: center;
}

.sectionTitle-center p {
  font-size: var(--fs24);
}

.sectionTitle.gradient {
  color: var(--clr-primary);
  background: linear-gradient(
    to right,
    var(--clr-primary) 0%,
    var(--clr-secondary) 50%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--fw900);
}

.sectionTitle.white {
  color: var(--clr-white);
}

/* gradient text */

.gradient {
  background: linear-gradient(
    to right,
    var(--clr-primary) 0%,
    var(--clr-secondary) 80%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--fw900);
}

/* small title */

.titleSmol {
  text-transform: uppercase;
  font-size: var(--fs16);
  font-weight: var(--fw800);
}

/* Paragrafy a text */
p {
  /* margin-bottom: 1em; */
  line-height: 1.6;
}

/* Odkazy */
a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a.underline {
  text-decoration: underline;
}

a.underline:hover {
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--clr-primary);
  text-decoration: underline;
}

a:active {
  color: var(--clr-primary);
}

/* Seznamy */
ul,
ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 0.25em;
}

/* Odstraní výchozí styling pro seznam bez teček */
ul.no-style,
ol.no-style {
  list-style: none;
  padding-left: 0;
}

/* GENERAL STYLES */

/* def container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px;
}

/* buttons */
.btn {
  width: fit-content;
  background: var(--clr-black);
  padding: 12px 24px;
  border-radius: 50px;
  color: var(--clr-white);
  font-size: var(--fs16);
  font-weight: var(--fw600);
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  text-decoration: none;
}

/* button outline */
.btn.outline {
  background: transparent;
}

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

.btn.red {
  background: var(--clr-primary);
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.btn.red:hover {
  background: var(--clr-black);
}

.btn--icon {
  display: inline-flex;
  align-items: center;
  gap: var(--gap8);
}

/* ANIMACE */

/* scroll */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.scroll-animate.left {
  transform: translateX(-40px);
}

.scroll-animate.right {
  transform: translateX(40px);
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* HEADER SECTION */

/* Fixní header s pozadím */
header {
  min-height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* header scroll */
header.scrolled {
  background: var(--def-gradient);
  box-shadow: 0px 8px 4px rgba(0, 0, 0, 0.05);
}

header.scrolled .header-container {
  padding: 16px 32px;
}

header.scrolled .logo {
  transform: translateY(0);
}

.header-container {
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 100;
  padding: 0 32px;
  transform: translateX(-50%);
}

.header-container nav {
  background: var(--clr-white);
  padding: 32px 48px 16px 48px;
  border-radius: 0 0 50px 50px;
  transform: translateY(-16px);
}

.header-container nav ul {
  display: flex;
  gap: var(--gap8);
  list-style: none;
  margin-bottom: 0px;
}

.header-container nav ul li {
  margin-bottom: 0px;
}

.header-container nav ul li a {
  color: var(--clr-black);
  font-size: var(--fs24);
  font-weight: var(--fw800);
  padding: 8px 24px;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease-in-out;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled .header-container nav {
  background: none;
  padding: 0;
  transform: translateY(0px);
}

header.scrolled .header-container nav ul li a {
  color: var(--clr-white);
}

@media (max-width: 1135px) and (min-width: 1025px) {
  .header-container nav ul li a {
    padding: 8px;
  }
}

.header-container nav ul li a:hover {
  color: var(--clr-primary);
  text-decoration: none;
  border-bottom: 4px solid var(--clr-primary);
}

.logo {
  max-width: 200px;
  height: auto;
  object-fit: contain;
  transform: translateY(24px);
}

.logo img {
  width: 100%;
  height: auto;
}

/* NEW */
/* Burger menu button - skrytý na desktopu */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.burger-line {
  width: 25px;
  height: 3px;
  background-color: var(--clr-white);
  margin: 3px 0;
  transition: 0.3s;
}

/* Animace burger menu při otevření */
.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobilní navigace */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding-top: 80px;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 32px;
  list-style: none;
}

.mobile-nav ul li a {
  color: var(--clr-white);
  text-decoration: none;
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  text-align: center;
}

.mobile-nav ul li a:hover {
  color: var(--clr-primary);
}

/* Respo navigace */
@media (max-width: 1024px) {
  header {
    min-height: 88px;
  }

  /* Skrýt desktop navigaci */
  nav {
    display: none;
  }

  /* Zobrazit burger menu */
  .burger-menu {
    display: flex;
  }

  .header-container {
    padding: 16px 20px;
  }

  .logo {
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 16px;
  }

  .logo {
    max-width: 120px;
  }

  .mobile-nav ul {
    padding: 20px 16px;
  }
}

@media (max-width: 640px) {
  header {
    min-height: 80px;
  }
}

/***** HERO SECTION *****/

.hero-section {
  position: relative;
  min-height: 860px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--def-gradient);
  /* padding-top: 100px; */
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(224, 30, 32, 1) 0%,
    rgba(101, 95, 116, 1) 50%,
    rgba(224, 30, 32, 1) 100%
  );
  background-size: 200% 100%;
  overflow: hidden;
  animation: gradientMove 25s ease-in-out infinite alternate;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

#hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--gap24);
  max-width: 740px;
}

section#hero h1 {
  color: var(--clr-white);
  font-size: var(--fs64);
  font-weight: var(--fw900);
  letter-spacing: 4%;
  line-height: 1;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

section#hero h1 span {
  font-size: var(--fs48);
  font-weight: var(--fw600);
}

section#hero p.intro-text {
  font-weight: 400;
  font-size: 24px;
  color: var(--clr-white);
  max-width: 640px;
}

#hero .container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -45%);
  background-image: url("/src/img/img-white_para.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1319px;
  height: 1319px;
  opacity: 0.05;
  max-width: 100%;
}

.hero-boxes-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-img {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 25%;
  z-index: 0;
  /* transform: translate(40%,-50%); */
}

.hero-boxes-wrap {
  /* max-width: 920px; */
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--gap24);
  z-index: 2;
}

@media only screen and (max-width: 1024px) {
  #hero .container::before {
    display: none;
  }

  .hero-img {
    transform: translate(-30%, 20%);
    opacity: 1;
  }
}

@media only screen and (max-width: 700px) {
  #hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 100px 32px 72px 32px;
  }
  section#hero {
  }

  .hero-boxes-wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-img,
  #hero .container::before {
    display: none;
  }
}

.hero-boxes-wrap .box_item {
  max-width: 220px;
  text-align: center;
  background: var(--clr-white);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(242, 242, 242, 1) 100%
  );
  border-radius: var(--def-br);
  padding: 24px;
  gap: 8px;
  display: flex;
  flex-flow: column wrap;
  box-shadow: var(--def-bs);
}

.hero-boxes-wrap .box_item h2 {
  font-size: 24px;
  color: var(--clr-secondary);
}

.hero-boxes-wrap .box_item:first-child h2,
.hero-boxes-wrap .box_item:last-child h2 {
  color: var(--clr-primary);
}

.hero-boxes-wrap .box_item p {
  color: var(--clr-black);
}

@media only screen and (max-width: 550px) {
  .hero-boxes-wrap {
    grid-template-columns: 1fr;
  }

  .hero-boxes-wrap .box_item {
    max-width: 100%;
  }

  .hero-boxes-col {
    justify-content: center;
  }
}

/* Boxes section */

.boxes-section {
  position: relative;
  padding: 0;
  z-index: 10;
  transform: translateY(-70px);
}

.boxes-section .container {
  padding: 0 32px;
}

@media only screen and (max-width: 640px) {
  .boxes-section {
    padding-top: 72px;
    transform: translateY(0px);
  }
}

/* ABOUT SECTION */

.about-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("src/assets/bg_planes.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.25;
  z-index: -1;
}

.about-section .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 24px;
  padding: 72px 32px;
}

@media only screen and (max-width: 1024px) {
  .about-section .container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.about-right-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--gap24);
}

.checklist-desktop {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap32);
  background: var(--clr-white);
  padding: 24px;
  border-radius: var(--br24);
  box-shadow: var(--def-bs);
}

.checklist-desktop .checklist_row {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  gap: var(--gap8);
  text-align: center;
}

.checklist-desktop .checklist_row:nth-child(2) {
  border-left: 1px solid rgba(0, 0, 0, 0.075);
  border-right: 1px solid rgba(0, 0, 0, 0.075);
}

.checklist-desktop .checklist_row:nth-child(3) {
  border-right: 1px solid rgba(0, 0, 0, 0.075);
}

.checklist-desktop .checklist_row h3 {
  font-size: var(--fs48);
  font-weight: var(--fw900);
}

.checklist-desktop .checklist_row h3 span {
  font-size: var(--fs24);
}

.checklist-desktop .checklist_row h4 {
  font-size: var(--fs24);
  font-weight: var(--fw800);
}

@media only screen and (max-width: 640px) {
  .checklist .checklist_row svg {
    max-width: 40px;
    height: auto;
  }
}

.about-left-col {
  align-self: center;
}

.about-left-col img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media only screen and (max-width: 1024px) {
  .about-left-col {
    position: absolute;
    filter: grayscale(1);
    z-index: -1;
  }

  .about-left-col img {
    opacity: 0.1;
  }
}

@media only screen and (max-width: 700px) {
  .checklist-desktop {
    grid-template-columns: repeat(2, 1fr);
  }

  .checklist-desktop .checklist_row:nth-child(2) {
    border: 0px;
  }

  .checklist-desktop .checklist_row:nth-child(3) {
    border: 0px;
  }
}

@media only screen and (max-width: 550px) {
  .checklist-desktop {
    grid-template-columns: 1fr;
  }

  .checklist-desktop .checklist_row,
  .checklist-desktop .checklist_row:nth-child(2),
  .checklist-desktop .checklist_row:nth-child(3) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
    padding-bottom: 24px;
  }
}

/* Víza v reálné situaci - podsekce */
.real-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap24);
}

.real-left-col {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: var(--gap24);
}

.real-right-col {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: var(--gap16);
  background: var(--def-gradient);
  padding: 24px;
  border-radius: var(--def-br);
  color: var(--clr-white);
}

.real-right-col svg {
  width: 175px;
  height: auto;
  fill: white;
  transform: translate(27%, -35%);
}

.real-right-col svg .cls-22 {
  opacity: 1;
}

@media only screen and (max-width: 1024px) {
  .real-container,
  .real-right-col {
    grid-template-columns: repeat(1, 1fr);
  }
  .real-right-col svg {
    max-width: 300px;
    position: absolute;
    right: 50%;
    opacity: 0.1;
    transform: translate(0);
    top: 50%;
    transform: translate(40%, -50%);
  }
}

/* JAK TO FUNGUJE - SECTION */

.funguje-section {
  position: relative;
  background: var(--def-gradient);
  color: var(--clr-white);
  padding: 72px 32px;
}

.funguje-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("src/img/bg-plane_seats-opt.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.funguje-section h2.sectionTitle.white {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.funguje-section .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap24);
  padding: 0;
}

@media only screen and (max-width: 640px) {
  .funguje-section .container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.proces-item .step-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--gap8);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  align-items: center;
  padding: 20px 0;
}

.timeline__step {
  text-align: center;
  position: relative;
  z-index: 10;
  min-height: 400px;
  display: flex;
}

.timeline__content {
  padding: 16px;
  /* background: rgba(255, 255, 255, 0.8); */
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline__content.top {
}

.timeline__content.bottom {
  justify-content: flex-end;
}

.timeline__circle {
  width: 80px;
  height: 80px;
  background: var(--clr-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: var(--fs48);
  font-weight: var(--fw900);
  outline: 3px solid var(--clr-white);
  outline-offset: -8px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  width: 100%;
  height: 68px;
  background: url("src/img/timeline_bg.svg") no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
  z-index: 0;
}

@media only screen and (max-width: 1024px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline__step {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
  }

  .timeline__circle {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }

  .timeline__content {
    order: 2;
  }

  .timeline::before {
    width: 50%;
    height: 50px;
    transform: translate(-50%, -50%) rotate(90deg);
    display: none;
  }

  @media only screen and (max-width: 640px) {
    .timeline {
      grid-template-columns: 1fr;
    }

    .timeline::before {
      display: none;
    }
  }
}

/* Contact form - Section */

.contact-form {
  position: relative;
  background: #fff;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("src/img/bg_form.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.75;
  z-index: -1;
}

.contact-form .container {
  display: flex;
  flex-direction: column;
  gap: var(--gap64);
}

/* Upozornění box */
.warning-box {
  display: flex;
  flex-direction: column;
  gap: var(--gap24);
}

ul.warning-item li {
  position: relative;
  list-style: none;
}

ul.warning-item li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -24px;
  width: 12px;
  height: 12px;
  background-image: url("/src/assets/ico-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Kontaktní formulář */

.visaForm-container {
  box-shadow: var(--def-bs);
  padding: 48px;
  border-radius: var(--def-br);
  background: var(--clr-white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group.two-thirds {
  grid-column: span 2;
}

.form-group.no {
  display: none;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
  color: #666;
  font-size: 16px;
}

.required {
  color: #666;
  margin-left: 0;
}

/* tooltip */

.tooltip-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.tooltip-container label {
  margin: 0;
}

.tooltip-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ccc;
  color: white;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  position: relative;
}

.tooltip {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

@media only screen and (max-width: 640px) {
  .tooltip {
    max-width: 100vw;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
  }
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
}

.tooltip-icon:hover .tooltip {
  opacity: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 16px 24px;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
  color: #666;
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%23666' d='M8 11L3 6h10l-5 5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  border-radius: 24px;
  padding: 20px 24px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 40px 0;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  border-radius: 4px;
}

.checkbox-group label {
  margin: 0;
  cursor: pointer;
  line-height: 1.4;
  font-weight: 400;
  color: #666;
}

.checkbox-group a {
  color: #007bff;
  text-decoration: underline;
}

/* Submit button - odeslat */

.submit-btn {
  display: flex;
  align-items: center;
  gap: var(--gap16);
  background: linear-gradient(
    90deg,
    rgba(224, 30, 32, 1) 0%,
    rgba(101, 95, 116, 1) 100%
  );
  color: var(--clr-white);
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: none;
  letter-spacing: normal;
  position: relative;
  overflow: hidden;
}

.btn-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  position: relative;
  z-index: 10;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(101, 95, 116, 1) 0%,
    rgba(224, 30, 32, 1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.submit-btn:hover::before {
  opacity: 1;
}

.submit-btn:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 8px 25px rgba(224, 30, 32, 0.3); */
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn span {
  position: relative;
  z-index: 1;
  font-size: 24px;
}
.submit-btn:hover span {
  z-index: 10;
}

/* Specifické styly pro datové inputy */
input[type="date"] {
  position: relative;
  color: #666;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 20px;
  cursor: pointer;
}

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

  .container {
    padding: 30px;
  }
}

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

  .container {
    padding: 20px;
  }
}

::placeholder {
  color: #999;
}

/* SLUŽBY SECTION */

.sluzby-section {
  background: var(--def-gradient);
}

/* 1 x 3 grid */
/* .sluzby__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 24px;
}

.sluzby__item--large {
  grid-row: 1 / 4;
  grid-column: 1;
}

.sluzby__item:nth-of-type(2) { grid-row: 1; grid-column: 2; }
.sluzby__item:nth-of-type(3) { grid-row: 2; grid-column: 2; }
.sluzby__item:nth-of-type(4) { grid-row: 3; grid-column: 2; }

@media (max-width: 768px) {
  .sluzby__grid {
    grid-template-columns: 1fr; 
    grid-template-rows: auto;
  }
  .sluzby__item--large {
    grid-row: auto;
    grid-column: auto;
  }
}
 */
/* 1 x 3 grid */

.sluzby__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.sluzby__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap24);
  padding: 24px;
  transform: scale(1);
  border-radius: var(--br24);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(242, 242, 242, 1) 100%
  );
  text-align: center;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.sluzby__item:hover {
  transform: scale(1.04);
  box-shadow: var(--def-bs);
}

/* výchozí větší */
.sluzby__item--active {
  transform: scale(1.04);
  box-shadow: var(--def-bs);
  background: var(--clr-white);
}

.sluzby__item--active .sluzby__title {
  color: var(--clr-primary);
}

.sluzby__icon {
  display: flex;
  justify-content: center;
}

.sluzby__icon svg {
  width: 125px;
  height: auto;
  object-fit: contain;
  margin-bottom: 24px;
}

.card-link {
  display: flex;
  flex-direction: column;
  gap: var(--gap24);
  color: var(--clr-black);
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.card-link:active,
.card-link:focus {
  color: vaR(--clr-black);
  border-radius: var(--br24);
  text-decoration: none;
}

.card-link:hover {
  color: var(--clr-black);
  text-decoration: none;
  border-radius: var(--br24);
}

.card-link:hover .sluzby__title {
  color: var(--clr-primary);
}

/* REFERENCE SECTION */
section.reference-section {
  position: relative;
}

section.reference-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("src/img/bg_ref.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 30%;
  opacity: 0.15;
  z-index: -1;
}

section.reference-section .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.swiper {
  width: 100%;
  max-width: 1280px; /* Omezení šířky slideru */
  margin: 0 auto;
  padding: 20px 0;
}

.swiper-wrapper {
  display: flex; /* Zajistí správné zarovnání slidů */
  padding: 48px 0px;
  gap: 24px;
}

.swiper-slide {
  /* width: 325px !important;  */
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  align-items: stretch;
  min-height: 250px;
  margin-right: 0px !important;
}

/* override */

.swiper-button-next,
.swiper-button-prev {
  color: var(--clr-primary) !important;
}

.swiper-pagination-bullet-active {
  background: var(--clr-primary) !important;
}

/* šipky */
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next,
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  background-color: var(--clr-white) !important;
  width: 45px !important;
  border-radius: 12px;
  box-shadow: var(--def-bs);
}

.reference-box {
  position: relative;
  width: 100%;
  /* max-width: 325px; */
  min-height: 250px;
  background: var(--clr-white);
  padding: 24px;
  box-sizing: border-box;
  gap: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--def-bs);
  border-radius: var(--br24);
}

.reference-box::before,
.reference-box::after {
  content: "";
  position: absolute;
  background: url("/src/img/ref-quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 48px;
  height: 48px;
  opacity: 0.1;
  z-index: -0;
}

.reference-box::before {
  top: 24px;
  left: 24px;
}

.reference-box::after {
  bottom: 24px;
  right: 24px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleY(-1);
}

.text {
  font-size: 16px;
  letter-spacing: 4%;
}

.bottom_info {
  display: flex;
  align-items: center;
  gap: var(--gap8);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 8px;
}

.bottom_info img {
  width: 16px;
  height: auto;
  object-fit: contain;
}

.author-name {
  font-weight: var(--fw800);
}

.author-desc {
  font-size: 14px;
  color: #666;
}

.swiper-button-prev,
.swiper-button-next {
  color: #333;
}

.swiper-pagination-bullet {
  background: #bbb;
}

.swiper-pagination-bullet-active {
  background: #333;
}

/* Respo */
@media (max-width: 768px) {
  .swiper-slide {
    width: 100% !important; /* Na mobilu 1 slide */
  }
}

.footer {
  background: var(--def-gradient);
}

.footer .container {
  padding: 72px 32px 32px 32px;
}

.footer .container .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 48px;
  color: var(--clr-white);
}

.footer .container .footer-grid .footer-col {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap24);
}

@media only screen and (max-width: 640px) {
  .footer .container .footer-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer .container .footer-grid .footer-col {
    flex-direction: column;
  }
}

.footer .footer-col ul {
  list-style: none;
  padding: 0;
}

.footer .footer-col ul li a {
  color: var(--clr-white);
}

.footer .footer-bottom {
  text-align: center;
  color: var(--clr-white);
}

.footer hr {
  border: 1px solid var(--clr-white);
  margin-bottom: 32px;
}

/* Form - thank you msg */

#visaFormThankYouMessage {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#visaFormThankYouMessage .ty-box {
  min-height: 185px;
  min-width: 300px;
  display: flex;
  flex-flow: column;
  gap: 24px;
  background-color: var(--clr-white);
  padding: 24px;
  box-shadow: var(--def-bs);
  border-radius: var(--br24);
  font-size: 16px;
  font-weight: var(--fw600);
  /* justify-content: center; */
  align-items: center;
  position: relative;
  z-index: 10000;
  /*     transform: translateY(100%); 
    opacity: 0; */
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: all;
}

#visaFormThankYouMessage .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* #visaFormThankYouMessage.active .ty-box {
    transform: translateY(0);
    opacity: 1;
} */

#visaFormThankYouMessage .ty-box .close {
  width: 32px;
  height: 32px;
  border: 0;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: var(--fs24);
  font-weight: var(--fw600);
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-in-outß;
}

#visaFormThankYouMessage .ty-box .close:hover {
  background: var(--clr-black);
}
