@charset "UTF-8";
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background-color: #2E2E2E;
}

.header {
  background-color: #2E2E2E;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 120rem;
  margin: 0 auto;
}
.header__logo-image {
  height: 6rem;
  display: block;
}

.language-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
}
.language-nav__item {
  display: inline-block;
}
.language-nav__link {
  display: block;
  padding: 0.5rem;
}
.language-nav__link--active .language-nav__flag, .language-nav__link:hover .language-nav__flag {
  opacity: 0.7;
}
.language-nav__flag {
  width: 2.4rem;
  height: 2.4rem;
  transition: opacity 0.3s ease;
}

.nav-links__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}
.nav-links__item {
  display: inline-block;
}
.nav-links__link {
  color: #FCFBF4;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav-links__link:hover {
  color: #D4A017;
}
.nav-links__link--active {
  color: #D4A017;
}

.hero {
  position: relative;
  height: calc(100vh - 10rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/hero.webp);
  background-size: 120%;
  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: panBackground 20s linear infinite;
}
.hero__content {
  max-width: 80rem;
  text-align: center;
}
.hero__title {
  color: #D4A017;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  display: block;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.hero__title-heading {
  font-size: clamp(1.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
  display: block;
  animation: moveInLeft 2s ease-out;
}
.hero__title-description {
  font-size: clamp(0.5rem, 5vw, 1.5rem);
  letter-spacing: 0.28rem;
  display: block;
  animation: moveInRight 2s ease-in;
}
.hero__logo {
  display: block;
  margin: 0 auto 2rem;
  height: 15rem;
  animation: moveInTop 2s ease-in;
}
.hero__btn:link, .hero__btn:visited {
  display: inline-block;
  color: #FCFBF4;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(1rem, 5vw, 1.5rem);
  margin: 5rem;
  padding: 1.5rem 4rem;
  background-color: #2E2E2E;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.2s;
  position: relative;
  animation: moveInBottom 2s ease-in;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.hero__btn:link:hover, .hero__btn:visited:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.3);
  color: #D4A017;
}
.hero__btn:link:hover::after, .hero__btn:visited:hover::after {
  transform: scale(2);
  opacity: 0;
}
.hero__btn:link:active, .hero__btn:visited:active {
  transform: translateY(1px);
  box-shadow: 0 0.15rem 0.3rem rgba(0, 0, 0, 0.3);
}
.hero__btn:link::after, .hero__btn:visited::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #2E2E2E;
  transition: all 0.4s;
}

.transport {
  background-image: linear-gradient(to top, rgba(212, 160, 23, 0.7), rgba(46, 46, 46, 0.7)), url(../img/transport.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 5rem 2rem;
  color: #FCFBF4;
  text-align: center;
}
.transport__content {
  max-width: 120rem;
  margin: 0 auto;
}
.transport__icon {
  width: 5rem;
  height: auto;
  margin-bottom: 1.5rem;
}
.transport__icon.animate {
  animation: moveInRight 1s ease-out forwards;
}
.transport__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #D4A017;
  margin-bottom: 1rem;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.transport__title.animate {
  animation: moveInLeft 1s ease-out forwards;
}
.transport__description {
  font-size: clamp(1rem, 2vw, 1.6rem);
  line-height: 1.6;
  margin-bottom: 3rem;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.transport__description.animate {
  animation: fadeIn 1s ease-out 0.2s forwards;
}
.transport__layout {
  display: flex;
  gap: 3rem;
  align-items: stretch;
  margin-bottom: 3rem;
}
.transport__main-image {
  flex: 1.5;
  position: relative;
}
.transport__main-img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: block !important;
}
.transport__main-img[data-index="1"] {
  opacity: 1;
}
.transport__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.transport__feature-card {
  background: rgba(46, 46, 46, 0.9);
  padding: 2rem;
  border-radius: 8px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.transport__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}
.transport__feature-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}
.transport__feature-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #D4A017;
  margin-bottom: 1rem;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.transport__feature-description {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  line-height: 1.6;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.transport__cta {
  display: inline-block;
  color: #FCFBF4;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw, 1.5rem);
  padding: 1.5rem 4rem;
  background-color: #D4A017;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s;
  position: relative;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.transport__cta.animate {
  animation: fadeIn 1s ease-out 0.4s forwards;
}
.transport__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.3);
  background-color: rgb(233.0765957447, 183.5106382979, 52.9234042553);
}
.transport__cta:active {
  transform: translateY(1px);
  box-shadow: 0 0.15rem 0.3rem rgba(0, 0, 0, 0.3);
}

.gallery {
  background-image: linear-gradient(to top, rgba(212, 160, 23, 0.7), rgba(46, 46, 46, 0.7)), url(../img/rental.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 5rem 2rem;
  color: #FCFBF4;
  text-align: center;
}
.gallery__content {
  max-width: 120rem;
  margin: 0 auto;
}
.gallery__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #D4A017;
  margin-bottom: 1rem;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
  animation: moveInLeft 1s ease-out forwards;
}
.gallery__description {
  font-size: clamp(1rem, 2vw, 1.6rem);
  line-height: 1.6;
  margin-bottom: 3rem;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-out 0.2s forwards;
}
.gallery .gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-items: center;
  min-height: 60rem;
}
.gallery .gallery-grid img {
  width: 100%;
  max-width: 30rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery .gallery-grid img:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
}
.modal .modal-content {
  position: relative;
  margin: auto;
  display: block;
  width: 80%;
  max-width: 70rem;
  top: 50%;
  transform: translateY(-50%);
}
.modal .modal-content #modalImage {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.modal .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #FCFBF4;
  font-size: 4rem;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.modal .close:hover {
  color: #D4A017;
}
.modal .nav-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.modal .nav-arrows .prev, .modal .nav-arrows .next {
  pointer-events: auto;
  color: #FCFBF4;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: background 0.3s;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.modal .nav-arrows .prev:hover, .modal .nav-arrows .next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.contact {
  background-image: linear-gradient(to bottom, rgba(212, 160, 23, 0.7), rgba(46, 46, 46, 0.7)), url(../img/contact.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 5rem 2rem;
  color: #FCFBF4;
  text-align: center;
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* —————————————— CUSTOM RADIO BUTTONS —————————————— */
}
.contact__content {
  max-width: 80rem;
  margin: 0 auto;
}
.contact__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #D4A017;
  margin-bottom: 2rem;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.contact__description {
  font-size: clamp(1rem, 2vw, 1.6rem);
  line-height: 1.6;
  margin-bottom: 3rem;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.contact__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  max-width: 100%;
}
.contact__form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.contact__form-group--full {
  grid-column: 1/-1;
}
.contact__label {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  margin-bottom: 0.5rem;
  color: #FCFBF4;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.contact__input, .contact__textarea {
  background: rgba(46, 46, 46, 0.8);
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 1rem;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  color: #FCFBF4;
  font-family: "Montserrat", sans-serif;
  transition: border-color 0.3s ease;
}
.contact__input:focus, .contact__textarea:focus {
  outline: none;
  border-color: #D4A017;
}
.contact__input::placeholder, .contact__textarea::placeholder {
  color: rgba(252, 251, 244, 0.6);
}
.contact__textarea {
  resize: vertical;
}
.contact__submit {
  grid-column: 1/-1;
  display: inline-block;
  color: #FCFBF4;
  background-color: #2E2E2E;
  border: none;
  border-radius: 100px;
  padding: 1.5rem 4rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1rem;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.3);
  background-color: rgb(58.75, 58.75, 58.75);
}
.contact__submit:active {
  transform: translateY(1px);
  box-shadow: 0 0.15rem 0.3rem rgba(0, 0, 0, 0.3);
}
.contact__radio-group {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 0.8rem;
}
.contact__radio-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #FCFBF4;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}
.contact__radio-label:hover {
  color: #D4A017;
}
.contact input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.contact__radio-custom {
  position: relative;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border: 2px solid rgba(252, 251, 244, 0.6);
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
}
.contact__radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #D4A017;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.25s ease;
}
input[type=radio]:checked + .contact__radio-custom {
  border-color: #D4A017;
  background-color: rgba(212, 160, 23, 0.15);
}
input[type=radio]:checked + .contact__radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}
input[type=radio]:focus-visible + .contact__radio-custom {
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.3);
  border-color: #D4A017;
}

.contact__form-group--full.error .contact__radio-group {
  margin-bottom: 0.5rem;
}

.about {
  background-image: linear-gradient(to top, rgba(212, 160, 23, 0.7), rgba(46, 46, 46, 0.7)), url(../img/about.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 5rem 2rem;
  color: #FCFBF4;
  text-align: center;
}
.about__content {
  max-width: 120rem;
  margin: 0 auto;
}
.about__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #D4A017;
  margin-bottom: 2rem;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.about__description {
  font-size: clamp(1rem, 2vw, 1.6rem);
  line-height: 1.6;
  margin-bottom: 3rem;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
.about__map-container {
  position: relative;
  width: 60rem;
  height: 20rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}
.about__map {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  background-color: #2E2E2E;
  padding: 5rem 2rem 2rem;
  color: #FCFBF4;
  font-size: 1.4rem;
}
.footer__content {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}
.footer__logo-section {
  text-align: center;
}
.footer__logo {
  height: 8rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  animation: fadeIn 1s ease-out;
}
.footer__logo:hover {
  transform: scale(1.05);
}
.footer__tagline {
  font-size: 1.2rem;
  color: #D4A017;
  opacity: 0.8;
  animation: fadeIn 1s ease-out 0.2s forwards;
}
.footer__links-section, .footer__contact-section, .footer__social-section {
  text-align: center;
}
.footer__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: #D4A017;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.footer__title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 2px;
  background-color: #D4A017;
  opacity: 0.5;
  transition: width 0.3s ease;
}
.footer__links-list, .footer__contact-list {
  list-style: none;
  padding: 0;
}
.footer__links-item, .footer__contact-item {
  margin-bottom: 1rem;
}
.footer__link, .footer__contact-link {
  color: #FCFBF4;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  animation: fadeIn 1s ease-out 0.3s forwards;
}
.footer__link:hover, .footer__contact-link:hover {
  color: #D4A017;
  transform: translateX(5px);
}
.footer__contact-label {
  font-weight: 600;
  color: #D4A017;
  margin-right: 0.5rem;
}
.footer__contact-text {
  color: #FCFBF4;
  font-size: 1.4rem;
  animation: fadeIn 1s ease-out 0.3s forwards;
}
.footer__social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.footer__social-link {
  display: inline-block;
  transition: transform 0.3s ease;
}
.footer__social-icon {
  width: 3rem;
  height: 3rem;
  fill: #FCFBF4;
  transition: fill 0.3s ease, transform 0.3s ease;
  animation: fadeIn 1s ease-out 0.4s forwards;
}
.footer__social-link:hover .footer__social-icon {
  fill: #D4A017;
  transform: scale(1.2);
}
.footer__bottom {
  text-align: center;
  padding-top: 2rem;
}
.footer__copyright {
  font-size: 1.2rem;
  color: rgba(252, 251, 244, 0.7);
  animation: fadeIn 1s ease-out 0.5s forwards;
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  75% {
    opacity: 1;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  75% {
    opacity: 1;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInTop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes panBackground {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 90%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes panBackgroundMobile {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.error-message {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 4px;
  display: block;
  min-height: 1.2em;
}

.contact__input.error,
.contact__textarea.error {
  border-color: #d32f2f;
  box-shadow: 0 0 0 1px #d32f2f;
}

.form-status {
  margin-top: 15px;
  font-weight: 500;
}

.form-status.success {
  color: #2e7d32;
}

.form-status.error {
  color: #d32f2f;
}

/* ====================== MEDIA QUERIES ====================== */
@media (max-width: 576px) {
  body {
    margin: 0;
    background-color: #2E2E2E;
  }
  .header {
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header__nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
  }
  .header__logo-image {
    height: 3.5rem;
    margin-bottom: 0.5rem;
  }
  .nav-links__list {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-links__link {
    font-size: 1.2rem;
    padding: 0.3rem 0.5rem;
  }
  .language-nav__list {
    display: flex;
    flex-direction: row;
    gap: 0.2rem;
    justify-content: center;
  }
  .language-nav__flag {
    width: 1.8rem;
    height: 1.8rem;
  }
  .language-nav__link {
    padding: 0.3rem;
  }
  .hero {
    height: 100vh;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to bottom, rgba(212, 160, 23, 0.5), rgba(46, 46, 46, 0.5)), url(../img/hero-mobile.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    animation: panBackgroundMobile 20s linear infinite;
  }
  .hero__content {
    padding: 0 1.5rem;
    max-width: 90%;
    margin: 0 auto;
    position: static;
    transform: none;
  }
  .hero__title-heading {
    font-size: clamp(1.2rem, 4vw, 3rem);
    margin-bottom: 0.8rem;
    letter-spacing: 0.08rem;
  }
  .hero__title-description {
    font-size: clamp(0.4rem, 3vw, 1.2rem);
    letter-spacing: 0.2rem;
  }
  .hero__logo {
    height: 10rem;
    margin-bottom: 1rem;
  }
  .hero__btn:link, .hero__btn:visited {
    font-size: clamp(0.8rem, 3vw, 1.2rem);
    margin: 2rem 0;
    padding: 1rem 2.5rem;
  }
  .transport {
    padding: 3rem 1rem;
    background-attachment: scroll;
  }
  .transport__layout {
    flex-direction: column;
    align-items: stretch;
  }
  .transport__main-image {
    min-height: 20rem;
  }
  .transport__feature-card {
    text-align: center;
    background: rgba(46, 46, 46, 0.9);
  }
  .transport__feature-icon {
    margin: 0 auto 1rem;
    display: block;
  }
  .transport__cta {
    padding: 1rem 3rem;
  }
  .gallery {
    padding: 3rem 1rem;
    background-attachment: scroll;
  }
  .gallery .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    min-height: auto;
  }
  .gallery .gallery-grid img {
    max-width: 100%;
    height: 25rem;
  }
  .gallery .modal .modal-content {
    width: 95%;
  }
  .gallery .modal .close {
    top: 10px;
    right: 20px;
    font-size: 3rem;
  }
  .gallery .modal .nav-arrows .prev, .gallery .modal .nav-arrows .next {
    font-size: 2.5rem;
    padding: 0.8rem;
  }
  .contact {
    height: auto;
    min-height: 70vh;
    padding: 3rem 1rem;
    background-attachment: scroll;
    /* manji radio buttoni na mobitelu */
  }
  .contact__content {
    padding: 0 1rem;
  }
  .contact__title {
    font-size: clamp(1.5rem, 4vw, 3rem);
  }
  .contact__description {
    font-size: clamp(0.9rem, 2vw, 1.4rem);
  }
  .contact__form {
    grid-template-columns: 1fr;
  }
  .contact__submit {
    padding: 1.2rem 3rem;
  }
  .contact__radio-custom {
    width: 2.2rem;
    height: 2.2rem;
  }
  .contact__radio-custom::after {
    width: 1.1rem;
    height: 1.1rem;
  }
  .contact__radio-label {
    gap: 0.9rem;
    font-size: 1.35rem;
  }
  .about {
    padding: 3rem 1rem;
    background-attachment: scroll;
  }
  .about__map-container {
    width: 90%;
    height: 15rem;
  }
  .footer {
    padding: 3rem 1rem 1rem;
  }
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__logo {
    height: 6rem;
  }
  .footer__title {
    font-size: clamp(1.6rem, 3vw, 2rem);
  }
  .footer__link, .footer__contact-link, .footer__contact-text {
    font-size: 1.2rem;
  }
  .footer__social-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (min-width: 577px) and (max-width: 1024px) {
  .header {
    padding: 0.8rem 1.5rem;
  }
  .header__nav {
    flex-direction: column;
    gap: 1rem;
  }
  .header__logo-image {
    height: 4.5rem;
  }
  .nav-links__list {
    gap: 1rem;
  }
  .nav-links__link {
    font-size: 1.5rem;
  }
  .language-nav__flag {
    width: 2.2rem;
    height: 2.2rem;
  }
  .hero {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(to bottom, rgba(212, 160, 23, 0.5), rgba(46, 46, 46, 0.5)), url(../img/hero.webp);
    background-size: 120%;
    background-position: 0% 0%;
    background-attachment: fixed;
    animation: panBackground 20s linear infinite;
  }
  .hero__content {
    max-width: 75rem;
    width: 100%;
    padding: 1rem;
  }
  .hero__title-heading {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
  }
  .hero__title-description {
    font-size: clamp(0.6rem, 3vw, 1.4rem);
  }
  .hero__logo {
    height: 12rem;
  }
  .hero__btn:link, .hero__btn:visited {
    font-size: clamp(0.9rem, 3vw, 1.4rem);
    padding: 1.2rem 3rem;
  }
  .transport {
    background-attachment: fixed;
  }
  .transport__layout {
    flex-direction: column;
  }
  .transport__main-image {
    min-height: 20rem;
  }
  .transport__feature-card {
    text-align: center;
  }
  .gallery {
    background-attachment: fixed;
  }
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem;
  }
  .gallery .gallery-grid img {
    height: 18rem;
  }
  .contact {
    height: 80vh;
    background-attachment: fixed;
  }
  .contact__form {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .header {
    padding: 1rem 2rem;
  }
  .header__nav {
    flex-direction: row;
    gap: 2rem;
  }
  .header__logo-image {
    height: 5rem;
  }
  .nav-links__link {
    font-size: 1.6rem;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .header {
    padding: 1rem 2rem;
  }
  .nav-links__link {
    font-size: 1.6rem;
  }
}
@media (min-width: 1201px) {
  .header {
    padding: 1rem 3rem;
  }
  .nav-links__link {
    font-size: 1.8rem;
  }
  .hero {
    height: 90vh;
    background-image: linear-gradient(to bottom, rgba(212, 160, 23, 0.5), rgba(46, 46, 46, 0.5)), url(../img/hero.webp);
    background-size: 120%;
    background-position: 0% 0%;
    animation: panBackground 20s linear infinite;
  }
  .hero__content {
    max-width: 90rem;
    margin-top: 5rem;
  }
  .hero__title-heading {
    font-size: clamp(2rem, 5vw, 5rem);
  }
  .hero__title-description {
    font-size: clamp(0.8rem, 5vw, 2rem);
  }
  .hero__logo {
    height: 18rem;
  }
  .hero__btn:link, .hero__btn:visited {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    padding: 1.8rem 4.5rem;
  }
  .transport {
    background-attachment: fixed;
  }
  .transport__layout {
    align-items: stretch;
  }
  .gallery {
    background-attachment: fixed;
  }
  .gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
  }
  .gallery .gallery-grid img {
    height: 22rem;
  }
  .contact {
    height: auto;
    min-height: 80vh;
    padding: 6rem 3rem;
    background-attachment: fixed;
  }
  .contact__content {
    max-width: 90rem;
  }
  .contact__form {
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  }
  .contact__submit {
    padding: 1.8rem 4.5rem;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
  }
  .about {
    background-attachment: fixed;
  }
}
/* ────────────────────────────── AGB PAGE ────────────────────────────── */
.agb-page {
  background: linear-gradient(to bottom, rgba(46, 46, 46, 0.95), #2E2E2E);
  min-height: 100vh;
  padding: 8rem 2rem 6rem;
  color: #FCFBF4;
}
@media (max-width: 576px) {
  .agb-page {
    padding: 6rem 1.5rem 4rem;
  }
}

.agb__container {
  max-width: 90rem;
  margin: 0 auto;
  background: rgba(46, 46, 46, 0.92);
  padding: 4rem 3rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, 0.25);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .agb__container {
    padding: 3rem 2rem;
  }
}
.agb__title {
  font-family: "Playfair Display", serif;
  color: #D4A017;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.5);
}
.agb__stand {
  text-align: center;
  color: rgba(252, 251, 244, 0.7);
  font-style: italic;
  margin-bottom: 4rem;
  font-size: 1.6rem;
}
.agb__content {
  font-size: 1.7rem;
  line-height: 1.8;
  color: #FCFBF4;
}
.agb__content h2 {
  color: #D4A017;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 3.5rem 0 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.agb__content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 3px;
  background: rgba(212, 160, 23, 0.5);
}
.agb__content p {
  margin-bottom: 1.8rem;
}
.agb__content a {
  color: #D4A017;
  text-decoration: underline;
  transition: all 0.2s;
}
.agb__content a:hover {
  color: rgb(235.5723404255, 191.6489361702, 75.9276595745);
}
.agb__content strong {
  color: #D4A017;
}
.agb__closing {
  margin-top: 5rem;
  text-align: right;
  font-weight: 600;
  font-size: 1.9rem;
  color: rgba(252, 251, 244, 0.9);
}

/*# sourceMappingURL=styles.css.map */
