html {
  scroll-behavior: smooth;
}

/* img{
  display: none!important;
} */

/* === Global styles === */
body {
  font-family: 'Inter', Arial, sans-serif;
  background: linear-gradient(135deg, #151a23 0%, #222834 100%);
  color: #f7fafc;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
}

a {
  color: #ffa640;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

a:hover {
  color: #ff7f00;
}

img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

button,
.btn-hero {
  font-family: inherit;
  background: #ff7f00;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 6px 24px 0 rgba(255, 127, 0, 0.08);
  transition: background 0.2s, transform 0.12s;
}

button:hover,
.btn-hero:hover {
  background: #ff9500;
  transform: translateY(-2px) scale(1.02);
}

::-webkit-scrollbar {
  width: 8px;
  background: #191e28;
}

::-webkit-scrollbar-thumb {
  background: #32384a;
  border-radius: 4px;
}

/* === Utility === */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: rgba(25, 30, 40, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 2px 12px 0 rgba(22, 22, 22, 0.02);
}

header .container-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  max-width: 180px;
}

.header-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  box-shadow: none;
  border-radius: unset;
}

.header-nav {
  display: flex;
  gap: 32px;
  flex-wrap: nowrap;
  align-items: center;
}

.header-nav a {
  color: #f7fafc;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s;
  white-space: nowrap;
}

.header-nav a:hover {
  color: #ffa640;
}

.menu-toggle {
  display: none;
  /* po defaultu skrivamo, prikazati samo na mobile */
}

@media (max-width: 901px) {
  header .container-custom {
    height: 58px;
    padding: 0 16px;
  }

  /* .header-logo img {
    height: 34px;
  } */

  .header-nav {
    gap: 14px;
    font-size: 0.95rem;
    flex-wrap: wrap;
    /* ako baš mora na malom ekranu */
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #f7fafc;
  }

  /* ako planiraš koristiti mobile menu: nav se može sakriti ovdje */
  /* .header-nav { display: none; } */
}

/* Mobilni meni: skriven po defaultu */
@media (max-width: 901px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: rgba(15, 17, 22, 0.97);
    /* tamna pozadina */
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    z-index: 999;
  }

  .header-nav a {
    font-size: 1.2rem;
    color: #ffa640 !important;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-nav.active {
    display: flex;
    animation: fadeSlide 0.3s ease-in-out;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }

  @keyframes fadeSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}


/* === HERO SECTION === */
section#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

section#home>.absolute {
  z-index: 1;
}

section#home .container-custom {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

section#home h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 18px #222b;
}

@media (min-width: 768px) {
  section#home h1 {
    font-size: 3.2rem;
  }
}

@media (min-width: 1200px) {
  section#home h1 {
    font-size: 4.2rem;
  }
}

section#home p {
  font-size: 1.12rem;
  color: #fff9;
  max-width: 650px;
  margin: 0 auto 2rem auto;
}

.btn-hero {
  margin-top: 1.2rem;
  font-size: 1.12rem;
  padding: 15px 38px;
  border-radius: 18px;
  font-weight: 700;
  background: linear-gradient(92deg, #ff9500 0%, #ffa640 100%);
}

.btn-hero svg {
  margin-left: 8px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === HERO INFO BOXES === */
section#home .flex {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(3px);
  border-radius: 16px;
  padding: 18px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  margin: 0 auto;
  justify-content: center;
}

section#home .font-bold {
  font-weight: 700;
  font-size: 1.08rem;
}

section#home .text-sm {
  font-size: 0.95rem;
  color: #f9fafc;
  opacity: 0.7;
}

section#home .shadow-md {
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.10);
}

section#home .rounded-xl {
  border-radius: 20px;
}

section#home .py-5 {
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}

section#home .px-7 {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

section#home .gap-4 {
  gap: 18px;
}

section#home .justify-center {
  justify-content: center;
}

/* === SCROLL INDICATOR === */
section#home .absolute.bottom-8 {
  z-index: 3;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

section#home .w-6 {
  width: 24px;
}

section#home .h-10 {
  height: 40px;
}

section#home .border-2 {
  border-width: 2px;
  border-color: #fff6;
}

section#home .rounded-full {
  border-radius: 999px;
}

section#home .bg-white\/70 {
  background: #fff7;
}

section#home .animate-pulse {
  animation: pulse 1.4s infinite alternate;
}

@keyframes pulse {
  to {
    opacity: 0.35;
  }
}

/* === Animations === */
.animate-fade-in {
  animation: fadeIn 1s 0.2s backwards;
}

.animate-slide-up {
  animation: slideUp 0.8s 0.6s backwards;
}

.animate-bounce-in {
  animation: bounceIn 0.7s 1.1s backwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
  }

  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* === Responsive tweaks === */
@media (max-width: 640px) {
  .container-custom {
    padding: 0 2vw;
  }

  section#home h1 {
    font-size: 1.3rem;
  }

  .btn-hero {
    font-size: 0.96rem;
    padding: 11px 18px;
  }

  section#home .flex {
    padding: 8px 10px;
    gap: 9px;
    font-size: 0.98rem;
  }

  section#home .py-5 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

/* ==== Helper classes for spacing and colors ==== */
.text-xl {
  font-size: 1.22rem;
}

.text-primary {
  color: #ffa640;
}

.text-foreground {
  color: #f7fafc;
}

.text-white {
  color: #fff;
}

.text-white\/90 {
  color: #fff9;
}

.text-orange-300 {
  color: #ffa640;
}

.bg-card\/90 {
  background: rgba(30, 34, 42, 0.94);
}

.bg-orange-500 {
  background: #ff7f00;
}

.bg-orange-600 {
  background: #ff9500;
}

.bg-gradient-to-br {
  background: linear-gradient(135deg, #0e1017 0%, #35521a 90%, transparent 100%);
}

.border-primary\/20 {
  border-color: #ffa64022;
}

.backdrop-blur {
  backdrop-filter: blur(10px);
}

.backdrop-blur-lg {
  backdrop-filter: blur(18px);
}

.rounded-md {
  border-radius: 12px;
}

.rounded-xl {
  border-radius: 20px;
}

.shadow-lg {
  box-shadow: 0 8px 28px 0 rgba(0, 0, 0, 0.14);
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

/* Add/adjust as needed for your site structure */

/************* SEKCIJA: TURE *************/
.section-padding {
  padding: 80px 0 64px 0;
}

@media (max-width: 900px) {
  .section-padding {
    padding: 42px 0 32px 0;
  }
}

.bg-gradient-to-br.from-background.to-muted {
  background: linear-gradient(135deg, #1a202c 0%, #232a37 100%);
}

.bg-gradient-to-br.from-muted.to-background {
  background: linear-gradient(135deg, #232a37 0%, #1a202c 100%);
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gap-8 {
  gap: 32px;
}

.gap-6 {
  gap: 24px;
}

.gap-12 {
  gap: 48px;
}

.gap-4 {
  gap: 16px;
}

.bg-white {
  background: #fff;
}

.text-black {
  color: #171c23;
}

.text-primary {
  color: #ffa640;
}

.text-muted-foreground {
  color: #667085;
}

.text-orange-400 {
  color: #ffae42;
}

.text-orange-500 {
  color: #ff7f00;
}

.text-green-600 {
  color: #16a34a;
}

.rounded-2xl {
  border-radius: 28px;
}

.rounded-3xl {
  border-radius: 38px;
}

.rounded-xl {
  border-radius: 20px;
}

.rounded-lg {
  border-radius: 14px;
}

.shadow-md {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
}

.shadow-lg {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.shadow-xl {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.17);
}

.hover\:shadow-xl:hover {
  box-shadow: 0 24px 50px 0 rgba(255, 127, 0, 0.12);
}

.overflow-hidden {
  overflow: hidden;
}

.transition-shadow {
  transition: box-shadow 0.23s;
}

.p-6 {
  padding: 26px;
}

.mb-2 {
  margin-bottom: 0.7em;
}

.mb-4 {
  margin-bottom: 1.1em;
}

.mb-6 {
  margin-bottom: 1.5em;
}

.mb-8 {
  margin-bottom: 2em;
}

.mb-12 {
  margin-bottom: 3em;
}

.text-xl {
  font-size: 1.23rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.3em;
}

.gap-4 {
  gap: 1em;
}

.px-4 {
  padding-left: 1.2em;
  padding-right: 1.2em;
}

.py-2 {
  padding-top: 0.65em;
  padding-bottom: 0.65em;
}

.text-sm {
  font-size: 0.99rem;
}

.bg-orange-400 {
  background: #ffa640;
}

.bg-orange-400:hover,
.hover\:bg-orange-500:hover {
  background: #ff7f00 !important;
}

.rounded-lg {
  border-radius: 16px;
}

.w-full {
  width: 100%;
}

.h-56 {
  height: 220px;
}

.object-cover {
  object-fit: cover;
}

.transition-colors {
  transition: background 0.15s, color 0.16s;
}

/* ==== Responsive fix for tour cards ==== */
@media (max-width: 600px) {
  .h-56 {
    height: 140px;
  }

  .p-6 {
    padding: 12px;
  }
}

/************* SEKCIJA: O NAMA *************/
#about .text-primary {
  color: #ffa640;
}

#about .text-lg {
  font-size: 1.12rem;
  color: #374151;
}

#about .text-muted-foreground {
  color: #8c939f;
}

#about .font-bold {
  font-weight: 700;
}

#about .font-semibold {
  font-weight: 600;
}

#about .bg-orange-400 {
  background: #ffa640;
}

#about .rounded-lg {
  border-radius: 16px;
}

#about .p-3 {
  padding: 12px;
}

#about .w-7 {
  width: 28px;
}

#about .h-7 {
  height: 28px;
}

#about .grid {
  gap: 22px;
}

#about .text-sm {
  font-size: 0.96rem;
  color: #8c939f;
}

#about .relative {
  position: relative;
}

#about img.rounded-3xl {
  border-radius: 38px;
}

#about .shadow-xl {
  box-shadow: 0 18px 48px 0 rgba(44, 32, 22, 0.19);
}

#about .absolute {
  position: absolute;
}

#about .top-0 {
  top: 0;
}

#about .right-0 {
  right: 0;
}

#about .bottom-0 {
  bottom: 0;
}

#about .left-0 {
  left: 0;
}

#about .bg-white {
  background: #fff;
}

#about .border {
  border: 1px solid #f3f4f6;
}

#about .px-8 {
  padding-left: 2.5em;
  padding-right: 2.5em;
}

#about .py-4 {
  padding-top: 1.2em;
  padding-bottom: 1.2em;
}

#about .rounded-2xl {
  border-radius: 25px;
}

#about .shadow-lg {
  box-shadow: 0 8px 24px 0 rgba(222, 128, 10, 0.13);
}

#about .mt-\[-1\.5em\] {
  margin-top: -1.5em;
}

#about .mr-\[-1\.5em\] {
  margin-right: -1.5em;
}

#about .mb-\[-1\.5em\] {
  margin-bottom: -1.5em;
}

#about .ml-\[-1\.5em\] {
  margin-left: -1.5em;
}

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

#about .text-3xl {
  font-size: 2.25rem;
}

#about .text-2xl {
  font-size: 1.55rem;
}

#about .text-orange-500 {
  color: #ff7f00;
}

#about .text-green-600 {
  color: #22c55e;
}

@media (max-width: 900px) {
  #about .grid-cols-2 {
    grid-template-columns: 1fr !important;
  }

  #about img {
    height: 270px !important;
  }
}

@media (max-width: 700px) {
  #about img {
    height: 120px !important;
  }

  #about .px-8,
  #about .py-4 {
    padding: 1em 1em;
  }
}

/************* SEKCIJA: GALERIJA *************/
#gallery .text-center {
  text-align: center;
}

#gallery .mb-16 {
  margin-bottom: 4.5em;
}

#gallery .text-3xl {
  font-size: 2.22rem;
}

#gallery .md\:text-4xl {
  font-size: 2.7rem;
}

#gallery .lg\:text-5xl {
  font-size: 3.1rem;
}

#gallery .font-bold {
  font-weight: 700;
}

#gallery .gradient-text {
  background: linear-gradient(90deg, #ffa640 10%, #ff7f00 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#gallery .text-lg {
  font-size: 1.13rem;
  color: #7e8999;
}

#gallery .max-w-2xl {
  max-width: 700px;
}

#gallery .mx-auto {
  margin-left: auto;
  margin-right: auto;
}

#gallery .flex {
  display: flex;
  flex-wrap: wrap;
}

#gallery .gap-4 {
  gap: 1em;
}

#gallery .mb-12 {
  margin-bottom: 3em;
}

#gallery .grid {
  display: grid;
  gap: 18px;
}

#gallery .grid-cols-1 {
  grid-template-columns: 1fr;
}

#gallery .sm\:grid-cols-2 {}

@media (min-width: 600px) {
  #gallery .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  #gallery .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

#gallery .rounded-xl {
  border-radius: 18px;
}

#gallery .shadow-md {
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.11);
}

#gallery .hover\:shadow-xl:hover {
  box-shadow: 0 20px 48px 0 rgba(255, 127, 0, 0.13);
}

#gallery .transition-shadow {
  transition: box-shadow 0.18s;
}

#gallery .mt-12 {
  margin-top: 2.8em;
}

#gallery .bg-background {
  background: #20293c;
}

#gallery .border-primary {
  border: 1px solid #ffa64033;
}

#gallery .hover\:bg-primary\/10:hover {
  background: #ffa6401a !important;
}

#gallery .h-10 {
  height: 44px;
}

#gallery .px-4 {
  padding-left: 1.2em;
  padding-right: 1.2em;
}

#gallery .py-2 {
  padding-top: 0.65em;
  padding-bottom: 0.65em;
}

/* Dugme */
#gallery button {
  font-family: inherit;
  border: 1.5px solid #ffa640;
  border-radius: 12px;
  background: #232a37;
  color: #ffa640;
  font-weight: 600;
  padding: 11px 32px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}

#gallery button:hover {
  background: #ffa6401a;
  color: #fff;
  border-color: #ffa640;
}

/* Generalni kontejner */
.container-custom {
  width: 75%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Header osnovni stilovi */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: #f4f7f5;
  /* Svijetla pozadina */
  border-bottom: 2.5px solid #338054;
  /* Zeleni border ispod headera */
  box-shadow: 0 1px 10px 0 rgba(44, 62, 80, 0.04);
  transition: background 0.2s, box-shadow 0.2s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.header-logo {
  text-decoration: none;
  color: #ff7f00;
}

.header-title {
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ff7f00;
  transition: color 0.2s;
}

.header-nav {
  display: flex;
  gap: 36px;
}

.header-nav a {
  color: #1b3b24;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}

.header-nav a:hover,
.header-nav a:focus {
  color: #338054;
  border-bottom: 2px solid #338054;
  outline: none;
}

/* Dugme za mobilni meni */
.menu-toggle {
  display: none;
  background: #338054;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  margin-left: 20px;
  transition: background 0.16s;
}

.menu-toggle svg {
  stroke: #fff;
}

.menu-toggle:active,
.menu-toggle:focus {
  background: #ff7f00;
  outline: none;
}

/* Responsive */
@media (max-width: 900px) {
  .header-nav {
    display: none;
  }

  .footer-links {
    display: none;
  }

  .footer-contact {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner {
    height: 56px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .header-title {
    font-size: 1.07rem;
  }
}

/* HERO SEKCIJA - PLAVA POZADINA + ZELENI OVERLAY */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #171e27;
  /* Fallback tamnoplava */
}

/* .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('https://quadtourbjelasnica.com/assets/img/photo-16.jpg') center center/cover no-repeat;
} */

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg, #1d242e 75%, #255a41cc 100%);
  mix-blend-mode: multiply;
  opacity: 0.95;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 64px 20px 0 20px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-container {
  max-width: 870px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 28px;
  color: #fff;
  text-shadow: 0 4px 24px #0008;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.8rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.2rem;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #ffffffd8;
  margin-bottom: 34px;
}

.hero-btn-wrap {
  margin-bottom: 38px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #fa8231 60%, #fd9644 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  outline: none;
  border-radius: 14px;
  padding: 15px 38px 15px 30px;
  font-size: 1.12rem;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.16s, transform 0.14s;
  box-shadow: 0 4px 28px 0 #241a0e11;
  margin-top: 8px;
}

.hero-btn:hover {
  background: linear-gradient(90deg, #fd9644 60%, #fa8231 100%);
  box-shadow: 0 8px 28px 0 #fa8231aa;
  transform: translateY(-2px) scale(1.02);
}

/* HERO INFO BOXOVI */
.hero-infobox-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 46px 0 0 0;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-infobox-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

.hero-infobox {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 28px;
  backdrop-filter: blur(2.5px);
  box-shadow: 0 4px 20px 0 #0001;
  justify-content: center;
  transition: background 0.2s;
}

.hero-infobox:hover {
  background: rgba(255, 255, 255, 0.13);
}

.hero-ico {
  color: #fa8231;
  display: flex;
  align-items: center;
  font-size: 2rem;
  min-width: 36px;
}

.hero-infobox-title {
  font-weight: 700;
  font-size: 1.11rem;
  color: #fff;
  margin-bottom: 1px;
}

.hero-infobox-desc {
  font-size: 0.95rem;
  color: #d6e7e2;
  opacity: 0.8;
  font-weight: 500;
}

@keyframes bounce-dot {
  0% {
    margin-top: 6px;
    opacity: 0.6;
  }

  80% {
    margin-top: 16px;
    opacity: 1;
  }

  100% {
    margin-top: 19px;
    opacity: 0.3;
  }
}

/* RESPONSIVE - manji fontovi i spacing */
@media (max-width: 420px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-infobox {
    padding: 10px 8px;
    gap: 7px;
  }

  .hero-btn {
    padding: 11px 16px 11px 13px;
    font-size: 0.95rem;
  }
}

/* Sekcija Naše Ture - galerija tura */
#tours {
  /* Gradient pozadina, identična ostalim sekcijama */
  background: #232935(135deg, #f6f8fa 0%, #eef2f7 100%);
  padding: 64px 0 88px 0;
}

.container-tours {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.tours-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #ff7f00;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.tours-desc {
  text-align: center;
  color: #fff9;
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

@media (min-width: 1100px) {
  .tours-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.tour-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 32px 0 rgba(67, 80, 100, 0.12);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  border: 1px solid #eef2f7;
  min-height: 470px;
}

.tour-card:hover {
  box-shadow: 0 6px 32px 0 rgba(250, 130, 49, 0.16);
  border-color: #ffd3a5;
}

.tour-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  display: block;
}

.tour-info {
  padding: 22px 22px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-info h3 {
  font-size: 1.18rem;
  font-weight: bold;
  margin: 0 0 8px 0;
  color: #22392b;
}

.tour-short {
  color: #6c7970;
  font-size: 1rem;
  margin-bottom: 10px;
}

.tour-details {
  font-size: 0.98rem;
  color: #446145;
  margin-bottom: 20px;
}

.tour-details span {
  color: #22392b;
  font-weight: 500;
}

.tour-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tour-price {
  font-size: 1.08rem;
  font-weight: 600;
  color: #fa8231;
  letter-spacing: 0.5px;
}

.tour-btn {
  background: linear-gradient(90deg, #fa8231 60%, #fd9644 100%);
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 9px;
  padding: 10px 28px;
  font-size: 1.02rem;
  box-shadow: 0 2px 16px 0 rgba(250, 130, 49, 0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.tour-btn:hover {
  background: linear-gradient(90deg, #fd9644 65%, #fa8231 100%);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(250, 130, 49, 0.13);
}

@media (max-width: 600px) {
  .tour-info {
    padding: 15px 10px 12px 10px;
  }

  .tour-image {
    height: 145px;
  }

  .tour-card {
    min-height: 340px;
  }
}

/* ===== O NAMA SEKCIJA ===== */

.about-section {
  background: #232935;
  /* Tamna pozadina */
  padding: 70px 0 90px 0;
  color: #e9ecef;
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

@media (min-width: 1024px) {
  .about-grid {
    flex-direction: row;
    gap: 70px;
    align-items: center;
  }
}

.about-content {
  flex: 1;
}

.about-title {
  font-size: 2.8rem;
  color: #ff9900;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.15;
}

.about-lead {
  font-size: 1.20rem;
  color: #f2f2f2;
  margin-bottom: 12px;
  font-weight: 500;
}

.about-desc {
  color: #b2bbc7;
  font-size: 1.07rem;
  margin-bottom: 34px;
  font-weight: 400;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 600px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: transparent;
}

.about-icon {
  background: linear-gradient(135deg, #fa8231 70%, #fd9644 100%);
  border-radius: 10px;
  padding: 11px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  box-shadow: 0 3px 20px 0 rgba(44, 62, 80, 0.09);
}

.about-feature-title {
  font-size: 1.11rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.about-feature-desc {
  color: #c4cdd5;
  font-size: 0.98rem;
  font-weight: 400;
}

.about-img-block {
  flex: 1;
  position: relative;
  min-width: 340px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-block img {
  border-radius: 30px;
  width: 100%;
  height: 430px;
  object-fit: cover;
  box-shadow: 0 6px 28px 0 rgba(44, 62, 80, 0.17);
}

/* Stat box */
.about-stat {
  position: absolute;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(44, 62, 80, 0.11);
  padding: 18px 36px 12px 36px;
  border-radius: 1.4em;
  min-width: 145px;
  text-align: center;
  border: 1.5px solid #e8ecef;
  z-index: 3;
}

.about-stat-top-right {
  top: -30px;
  right: -28px;
}

.about-stat-bottom-left {
  bottom: -30px;
  left: -28px;
}

@media (max-width: 1024px) {

  .about-stat-top-right,
  .about-stat-bottom-left {
    position: static;
    margin-top: 22px;
    margin-bottom: 0;
    left: 0;
    right: 0;
    top: unset;
    bottom: unset;
    display: inline-block;
  }
}

.about-stat-number {
  font-size: 2.3rem;
  font-weight: bold;
  color: #fa8231;
  margin-bottom: 4px;
  line-height: 1;
}

.about-stat-number-green {
  color: #23c483;
}

.about-stat-label {
  font-size: 1rem;
  color: #8a929b;
  font-weight: 500;
  margin-top: 0;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .about-img-block img {
    height: 300px;
  }

  .about-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 40px 0 50px 0;
  }

  .about-img-block img {
    height: 190px;
  }

  .about-container {
    padding: 0 6px;
  }

  .about-features {
    gap: 14px;
  }

  .about-title {
    font-size: 1.4rem;
  }

  .about-stat {
    padding: 13px 12px 8px 12px;
    min-width: 98px;
    font-size: 0.9rem;
  }
}

/* ===== GALERIJA sekcija ===== */

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 20px;
}

.gallery-card:hover .overlay {
  opacity: 1;
}

.overlay .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

.overlay .icon img {
  width: 48px;
  height: 48px;
}

.overlay .location {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-top: auto;
}



#gallery {
  padding: 60px 0 80px 0;
  background: transparent;
}

.gallery-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #FFA13A;
  letter-spacing: -1px;
  text-align: center;
}

.gallery-description {
  color: #fff9;
}

.gallery-desc {
  color: #b7bfc9;
  font-size: 1.16rem;
  max-width: 600px;
  margin: 0 auto 36px auto;
  text-align: center;
}

/* Grid for images */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.gallery-item {
  background: #fff;
  border-radius: 1.3em;
  box-shadow: 0 2px 32px 0 rgba(40, 60, 90, 0.12);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.18s;
  display: block;
  position: relative;
}

.gallery-item:hover {
  box-shadow: 0 6px 38px 0 rgba(252, 160, 48, 0.16);
  transform: translateY(-3px) scale(1.02);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1.2/1;
  display: block;
  object-fit: cover;
  transition: filter 0.18s;
  border-radius: 1.3em;
}

.gallery-item:hover img {
  filter: brightness(0.93) saturate(1.15);
}

/* Filter buttons */
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.gallery-filter-btn {
  border: none;
  background: #181e29;
  color: #fff;
  padding: 9px 24px;
  border-radius: 22px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 10px 0 rgba(44, 62, 80, 0.04);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: linear-gradient(90deg, #fa8231 70%, #fd9644 100%);
  color: #fff;
}

/* Dugme za učitavanje */
.gallery-load-more {
  margin: 44px auto 0 auto;
  display: block;
  padding: 14px 44px;
  border-radius: 15px;
  font-size: 1.1em;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #fa8231 70%, #fd9644 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 18px 0 rgba(44, 62, 80, 0.07);
  transition: background 0.17s;
}

.gallery-load-more:hover {
  background: linear-gradient(90deg, #fd9644 60%, #fa8231 100%);
}

/* Responsive padding */
@media (max-width: 700px) {
  #gallery {
    padding: 28px 0 40px 0;
  }

  .gallery-title {
    font-size: 2rem;
  }

  .gallery-desc {
    font-size: 1em;
  }

  .gallery-grid {
    gap: 16px;
  }

  .gallery-load-more {
    padding: 10px 28px;
    font-size: 1em;
  }
}

/************* SEKCIJA: FAQ *************/
#faq .max-w-4xl {
  max-width: 900px;
}

#faq .mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

#faq .mb-16 {
  margin-bottom: 4.3em;
}

#faq .text-3xl {
  font-size: 2.19rem;
}

#faq .md\:text-4xl {
  font-size: 2.6rem;
}

#faq .lg\:text-5xl {
  font-size: 3.15rem;
}

#faq .font-bold {
  font-weight: 700;
}

#faq .gradient-text {
  background: linear-gradient(90deg, #ffa640 10%, #ff7f00 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#faq .text-lg {
  font-size: 1.16rem;
  color: #6c7284;
}

#faq .text-muted-foreground {
  color: #7b8293;
}

#faq .space-y-4>*+* {
  margin-top: 1.2em;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 0.8em;
  box-shadow: 0 2px 20px 0 rgba(44, 32, 22, 0.06);
  transition: box-shadow 0.22s;
  overflow: hidden;
}

.faq-item.border-b {
  border-bottom: 2px solid #ffe2bb;
}

.faq-question {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.08rem;
  font-weight: 600;
  color: #23292f;
  padding: 0.9em 0;
  transition: color 0.17s;
  outline: none;
}

.faq-question:hover {
  color: #ff7f00;
}

.faq-arrow {
  font-size: 1.1em;
  color: #ff7f00;
  margin-left: 10px;
  transition: transform 0.19s;
  display: inline-block;
}

.faq-answer {
  font-size: 1.04rem;
  color: #7b8293;
  padding-left: 1.4em;
  padding-bottom: 1.2em;
  padding-right: 1.2em;
  line-height: 1.7;
  background: #fff;
  transition: max-height 0.22s;
}

.faq-answer.hidden {
  display: none;
}

/* FAQ bottom gradient box */
.bg-gradient-adventure {
  background: linear-gradient(100deg, #ff7f00 0%, #ffa640 70%, #fdb36d 100%);
  box-shadow: 0 10px 30px 0 rgba(255, 127, 0, 0.10);
}

.rounded-2xl {
  border-radius: 24px;
}

.p-8 {
  padding: 2.3em;
}

.text-white {
  color: #fff;
}

.text-2xl {
  font-size: 1.49rem;
}

.font-bold {
  font-weight: 700;
}

.mb-4 {
  margin-bottom: 1.3em;
}

.mb-6 {
  margin-bottom: 2em;
}

.text-white\/90 {
  color: rgba(255, 255, 255, 0.93);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.sm\:flex-row {}

@media (min-width: 600px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}

.gap-4 {
  gap: 1em;
}

.justify-center {
  justify-content: center;
}

.bg-white\/20 {
  background: rgba(255, 255, 255, 0.20);
}

.bg-white\/30:hover {
  background: rgba(255, 255, 255, 0.28);
}

.px-6 {
  padding-left: 1.7em;
  padding-right: 1.7em;
}

.py-3 {
  padding-top: 0.85em;
  padding-bottom: 0.85em;
}

.rounded-xl {
  border-radius: 16px;
}

.font-semibold {
  font-weight: 600;
}

.transition-colors {
  transition: background 0.19s, color 0.18s;
}

.mt-16 {
  margin-top: 4.3em;
}

@media (max-width: 900px) {
  #faq .p-8 {
    padding: 1.2em;
  }

  #faq .mb-16,
  .mt-16 {
    margin: 2.3em 0;
  }
}

@media (max-width: 600px) {

  .faq-question,
  .faq-answer {
    font-size: 0.97rem;
  }

  #faq .p-8 {
    padding: 0.9em;
  }
}

a.bg-white\/20,
a.bg-white\/20:visited {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 14px;
  transition: background 0.17s;
}

a.bg-white\/20:hover {
  background: rgba(255, 255, 255, 0.33);
  color: #ffe5c0;
}

/* ===== FAQ SEKCIJA ===== */
.faq-section {
  background: transparent;
  padding: 60px 0 0 0;
}

.faq-container {
  max-width: 740px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.faq-heading {
  text-align: center;
  margin-bottom: 34px;
}

.faq-title {
  color: #ff7f00;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.faq-desc {
  color: #fff9;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FAQ cards */
.faq-item {
  background: #fff;
  border-radius: 1.1em;
  box-shadow: 0 3px 20px 0 rgba(44, 62, 80, 0.08);
  overflow: hidden;
  transition: box-shadow .18s;
  border: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 600;
  color: #183c2c;
  padding: 22px 28px;
  transition: background .14s;
  border-radius: 1.1em;
}

.faq-question:hover {
  background: #f5f7fa;
}

.faq-arrow {
  font-size: 1.27em;
  color: #fa8231;
  margin-left: 10px;
  transition: transform .22s;
}

/* Odgovori */
.faq-answer {
  background: #f8fafb;
  color: #2d3436;
  font-size: 1.04rem;
  border-top: 1px solid #e4e7ed;
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.46, 0.03, 0.52, 0.96), padding 0.18s;
}

.faq-item.active .faq-answer {
  padding: 20px 28px 22px 28px;
  max-height: 400px;
}

/* CTA BOX na dnu */
.faq-cta-box {
  margin: 42px auto 0 auto;
  background: linear-gradient(90deg, #fa8231 65%, #fd9644 100%);
  color: #fff;
  border-radius: 1.3em;
  box-shadow: 0 2px 16px 0 rgba(44, 62, 80, 0.09);
  padding: 34px 28px 30px 28px;
  text-align: center;
  max-width: 620px;
}

.faq-cta-title {
  font-size: 1.42rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.faq-cta-desc {
  margin-bottom: 24px;
  color: #fff;
  font-size: 1.07rem;
}

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

.faq-cta-btn {
  background: #fff;
  color: #fa8231;
  font-weight: 600;
  border-radius: 12px;
  padding: 13px 30px;
  font-size: 1.09em;
  text-decoration: none;
  border: none;
  transition: background .19s, color .19s;
  box-shadow: 0 2px 12px 0 rgba(44, 62, 80, 0.06);
  margin-bottom: 0;
}

.faq-cta-btn:hover {
  background: #fa8231;
  color: #fff;
}

.faq-cta-btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.faq-cta-btn.outline:hover {
  background: #fff;
  color: #fa8231;
}

@media (max-width: 650px) {
  .faq-container {
    padding: 0 10px 32px 10px;
  }

  .faq-title {
    font-size: 1.38rem;
  }

  .faq-list {
    gap: 11px;
  }

  .faq-question {
    font-size: 1.01rem;
    padding: 15px 15px;
  }

  .faq-answer {
    font-size: 0.96rem;
    padding: 0 15px;
  }

  .faq-item.active .faq-answer {
    padding: 13px 15px 17px 15px;
  }

  .faq-cta-box {
    padding: 19px 10px 18px 10px;
  }
}

/* ===== Kontakt sekcija ===== */
.kontakt-title-wrap h2 {
  color: #94713A;
  font-weight: 800;
  letter-spacing: -1px;
  font-size: 2.6em;
  margin-bottom: 0.3em;
}

.kontakt-title-wrap p {
  color: #dfeae3;
  font-size: 1.17em;
  margin-bottom: 0;
  font-weight: 500;
}

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

@media (min-width: 992px) {
  .kontakt-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Lijeva strana */
.kontakt-left h3 {
  color: #13b26b;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.kontakt-left p {
  color: #e4efe8;
  font-size: 1.08em;
  margin-bottom: 1.2em;
  font-weight: 500;
}

.kontakt-card {
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 3px 32px 0 rgba(44, 62, 80, 0.09);
  padding: 26px 24px 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 1.2em;
}

.kontakt-ikon {
  color: #fa8231;
  font-size: 2.1em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: 4px;
}

.kontakt-card-body {
  flex: 1;
}

.kontakt-card-body .font-bold {
  font-weight: bold;
  color: #ff7f00;
  font-size: 1.06em;
  letter-spacing: -0.5px;
}

.kontakt-card-body .font-medium {
  font-weight: 600;
  color: #25563b;
  font-size: 1em;
}

.kontakt-card-body .text-muted-foreground {
  color: #78808b;
  font-size: 0.98em;
}

.kontakt-buttons {
  display: flex;
  gap: 15px;
  padding-top: 24px;
}

.kontakt-btn,
.kontakt-btn-outline {
  font-weight: bold;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.08em;
  box-shadow: 0 2px 16px 0 rgba(44, 62, 80, 0.04);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  padding: 13px 30px;
  text-decoration: none;
  border: none;
}

.kontakt-btn {
  flex: 1;
  background: linear-gradient(90deg, #fa8231 65%, #fd9644 100%);
  color: #fff;
}

.kontakt-btn:hover {
  background: linear-gradient(90deg, #fd9644 60%, #fa8231 100%);
}

.kontakt-btn-outline {
  flex: 1;
  background: #fff;
  color: #fa8231;
  border: 2px solid #fa8231;
}

.kontakt-btn-outline:hover {
  background: #fa8231;
  color: #fff;
}

/* Desna strana - Mapa */
.kontakt-map-outer {
  width: 100%;
  border-radius: 1.2em;
  overflow: hidden;
  min-height: 430px;
  height: 100%;
  box-shadow: 0 3px 32px 0 rgba(44, 62, 80, 0.09);
  margin-bottom: 0;
  background: #fff;
}

.kontakt-map-outer iframe {
  width: 100%;
  min-height: 430px;
  height: 100%;
  border: none;
  border-radius: 1.2em;
  display: block;
}

/* Responsive - mapa i grid */
@media (max-width: 991px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
  }

  .kontakt-map-outer,
  .kontakt-map-outer iframe {
    min-height: 350px;
    height: 350px;
  }
}

/* Subtitle */
.kontakt-subtitle {
  color: #e9e9de;
  font-size: 1.13em;
  margin-top: -0.7em;
  margin-bottom: 2.2em;
  font-weight: 400;
}

/* === KONTAKT FORMA === */
.kontakt-form-wrap {
  margin: 0 auto 32px auto;
  max-width: 540px;
}

.kontakt-form {
  background: #fff;
  border-radius: 1.5em;
  box-shadow: 0 3px 32px 0 rgba(44, 62, 80, 0.07);
  padding: 36px 30px;
}

.kontakt-form h3 {
  color: #ff7f00;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 1.2em;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.kontakt-form label {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ff7f00;
}

.kontakt-form input,
.kontakt-form select,
.kontakt-form textarea {
  /* width: 80%; */
  border: 1.5px solid #e1e6df;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 1em;
  background: #f9f9f7;
  color: #2b2b2b;
  margin-bottom: 0;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.16s;
  resize: none;
}

.kontakt-form input:focus,
.kontakt-form select:focus,
.kontakt-form textarea:focus {
  border-color: #fa8231;
  box-shadow: 0 0 0 2px #fa823133;
}

.kontakt-form textarea {
  min-height: 90px;
  resize: vertical;
  font-family: inherit;
}

/* Dugme */
.kontakt-form-btn {
  width: 100%;
  background: linear-gradient(90deg, #fa8231 65%, #fd9644 100%);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  font-size: 1.09em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  box-shadow: 0 2px 16px 0 rgba(44, 62, 80, 0.06);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.kontakt-form-btn:hover {
  background: linear-gradient(90deg, #fd9644 60%, #fa8231 100%);
}

/* Responsive - mobiteli */
@media (max-width: 700px) {
  .kontakt-form-wrap {
    max-width: 99vw;
    padding-left: 4px;
    padding-right: 4px;
    display: flex;
    justify-content: center;
  }

  .kontakt-form {
    padding: 35px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
    width: 100%
  }

  .form-group {
    margin-bottom: 15px;
    width: 100%;
  }
}


.form-error {
  color: #e74c3c;
  font-size: 0.9em;
  margin-top: 4px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.form-error.show {
  opacity: 1;
  max-height: 100px;
  /* dovoljno za poruku */
}

.input-error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 2px #e74c3c33;
}




/* ===== Footer sekcija ===== */
.custom-footer {
  background: linear-gradient(135deg, #222b36 80%, #243445 100%);
  color: #f8fafc;
  padding: 0 0 0 0;
  margin-top: 0;
}

.custom-footer .footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px 32px 20px;
}

.footer-col {
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 24px;
}

.logo-social .footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffa032;
  margin-bottom: 8px;
}

.logo-social .footer-desc {
  color: #cfd8df;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.footer-social a img {
  width: 30px;
  height: 30px;
  filter: brightness(90%) grayscale(20%);
  transition: filter 0.2s;
}

.footer-social a img:hover {
  filter: brightness(120%) grayscale(0%);
}

.footer-links h4,
.footer-contact h4,
.footer-tours h4 {
  font-size: 1.07rem;
  font-weight: 700;
  color: #ffa032;
  margin-bottom: 14px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #f8fafc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: #ffa032;
  text-decoration: underline;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 10px;
  font-size: 1rem;
}

.footer-contact .icon {
  font-size: 1.23em;
  margin-right: 2px;
  color: #ffa032;
  min-width: 26px;
}

.footer-tours .tour-row {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f8fafc;
  padding: 6px 10px;
  font-size: 1rem;
  transition: background 0.2s;
}

.footer-tours .tour-row:hover {
  background: rgba(255, 160, 50, 0.1);
  color: #ffa032;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #324157;
  padding: 18px 0 14px 0;
  text-align: center;
  color: #bcc8d1;
  background: transparent;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .custom-footer .footer-main {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 18px 24px 18px;
    gap: 28px;
  }
}

@media (max-width: 1100px) {
  .about-img-block {
    display: none;
  }

  .about-title,
  .about-lead,
  .about-desc {
    text-align: center;
  }

  .logo-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    min-width: 0;
    width: 100%;
    margin-bottom: 14px;
  }
}

@media (max-width: 600px) {
  .custom-footer .footer-main {
    padding: 24px 8px 18px 8px;
    gap: 18px;
  }

  .footer-social a img {
    width: 26px;
    height: 26px;
  }
}