/* Reset osnovnih stilova */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8f9fa;
  color: #222;
}

/* NAVBAR */
.navbar {
  width: 100%;
  background: rgb(0 17 44/var(--tw-bg-opacity,1));
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #b3e0ff;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  width: 30px;
  height: 25px;
  justify-content: center;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
/* OVERLAY MENU */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,17,44,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.overlay-links {
  list-style: none;
  text-align: center;
}
.overlay-links li {
  margin: 1.5rem 0;
}
.overlay-links li a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.2s;
}
.overlay-links li a:hover {
  color: #b3e0ff;
}
/* Responsive */
@media (max-width: 900px) {
  .navbar-container {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
/* Hamburger active state (optional for animation) */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* MAIN */
main {
  min-height: 70vh;
}
/* FOOTER */
.footer {
  width: 100%;
  background: rgb(0 17 44/var(--tw-bg-opacity,1));
  color: #fff;
  padding: 0;
  text-align: left;
  position: relative;
  bottom: 0;
  left: 0;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 3rem 2rem 1.5rem 2rem;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}
.footer-logo svg {
  display: block;
}
.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #b3e0ff;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #60b801;
}
.footer-contact p {
  margin: 0 0 0.3rem 0;
  font-size: 1rem;
  color: #e0e6ed;
}
.footer-contact-item {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.footer-bottom {
  width: 100%;
  background: #00112c;
  text-align: center;
  padding: 1.2rem 0 1.2rem 0;
}
.footer-bottom p {
  color: #b3e0ff;
  font-size: 1rem;
  margin: 0;
}
.footer-brand-desc {
  color: #e0e6ed;
  font-size: 1.05rem;
  margin-top: 0.5rem;
  max-width: 260px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .footer-brand-desc {
    max-width: 95vw;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Footer responsive poboljšanja */
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-col {
    min-width: 0;
    margin-bottom: 1.2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    flex: 1 1 150px;
  }
  .footer-logo {
    justify-content: center;
    margin-bottom: 1rem;
  }
  .footer-links ul, .footer-contact {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .footer-links li, .footer-contact-item {
    font-size: 1.05rem;
  }
}
@media (max-width: 600px) {
  .footer-main {
    padding: 1.2rem 0.3rem 0.7rem 0.3rem;
    gap: 0.7rem;
  }
  .footer-logo-text {
    font-size: 1.1rem;
  }
  .footer-brand-desc {
    font-size: 0.97rem;
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-links li, .footer-contact-item {
    font-size: 0.98rem;
  }
  .footer-bottom {
    padding: 0.7rem 0 0.7rem 0;
    font-size: 0.95rem;
  }
}
@media (max-width: 400px) {
  .footer-main {
    padding: 0.7rem 0.1rem 0.3rem 0.1rem;
  }
  .footer-logo-text {
    font-size: 0.95rem;
  }
  .footer-brand-desc {
    font-size: 0.93rem;
  }
}

/* HERO SECTION */
.hero {
  width: 100%;
  background: rgb(0 17 44/var(--tw-bg-opacity,1));
  padding: 100px 0 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 90%;
}
.hero-left {
  flex: 1;
}
.hero-left h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-left p {
  font-size: 1.2rem;
  color: #e0e6ed;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
}
.btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.btn-primary {
  background: rgb(96 184 1/var(--tw-bg-opacity,1));
  color: #fff;
}
.btn-primary:hover {
  background: #222;
  color: #b3e0ff;
}
.btn-secondary {
  background: #fff;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  border: 2px solid #fff;
}
.btn-secondary:hover {
  background: #e0e6ed;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  border: 2px solid #e0e6ed;
}
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .hero-left, .hero-right {
    flex: unset;
    width: 100%;
  }
  .hero-left{
    padding-top: 20px;
  }
  .hero-left h1 {
    font-size: 2rem;
  }
  .hero-left p {
    font-size: 1rem;
  }
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 70px 0 30px 0;
  }
  .hero-left h1 {
    font-size: 1.3rem;
  }
  .hero-image {
    max-width: 90vw;
    padding: 0 10px;
  }
} 

/* JOBS SECTION */
.jobs-section {
  width: 100%;
  background: rgb(0 17 44/var(--tw-bg-opacity,1));
  padding: 70px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.jobs-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.jobs-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.job-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}
.job-category {
  background: #11294d;
  color: #fff;
  border-radius: 18px;
  padding: 0.5rem 1.3rem;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  border: 1px solid #2a4066;
  transition: background 0.2s, color 0.2s;
}
.job-category:hover {
  background: #fff;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
}
.jobs-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1240px;
}
.jobs-image {
  flex: 1;
  display: flex;
}
.jobs-section-image {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.jobs-info {
  flex: 1;
  padding: 1rem 0;
}
.jobs-info h3 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}
.jobs-info p {
  color: #e0e6ed;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.jobs-benefits {
  list-style: disc inside;
  color: #fff;
  font-size: 1rem;
  padding-left: 1rem;
}
.jobs-benefits li {
  margin-bottom: 0.5rem;
  list-style: none;
  color: #fff;
}
.jobs-benefits .checkmark {
  color: #60b801;
  font-size: 1.2em;
  margin-right: 0.6em;
  vertical-align: middle;
}
.jobs-cta {
  margin-top: 1.5rem;
  min-width: 180px;
  display: inline-block;
  background: #fff;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  border: 2px solid #fff;
}
.jobs-cta:hover {
  background: #e0e6ed;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  border: 2px solid #e0e6ed;
}
@media (max-width: 900px) {
  .jobs-cta {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 900px) {
  .jobs-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .jobs-image, .jobs-info {
    width: 100%;
    flex: unset;
  }
  .jobs-section-image {
    max-width: 90vw;
  }
} 

/* HIRE SECTION */
.hire-section {
  background: rgb(0 17 44/var(--tw-bg-opacity,1));
}
.hire-content {
  width: 100%;
  padding: 70px 10px 60px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
}
.hire-header {
  text-align: left;
  margin-bottom: 2.5rem;
  max-width: 700px;
}
.hire-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.hire-header h3 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hire-header p {
  color: #e0e6ed;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.hire-benefits {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 1rem;
  text-align: left;
}
.hire-benefits li {
  margin-bottom: 0.7rem;
  list-style: none;
  align-items: center;
  color: #fff;
}
.hire-benefits .checkmark {
  color: #60b801;
  font-size: 1.2em;
  margin-right: 0.6em;
  vertical-align: middle;
}
.hire-partners {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media (max-width: 900px) {
  .hire-partners {
    flex-direction: column;
    gap: 1.2rem;
  }
  .hire-section{
    flex-direction: column-reverse;
  }
}
.partners-text {
  font-size: 1.1rem;
  color: #b3e0ff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.partners-image {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
@media (max-width: 900px) {
  .hire-content {
    flex-direction: column-reverse;
    gap: 2rem;
    align-items: center;
    text-align: center;
    padding: 40px 0 30px 0;
  }
  .hire-header {
    max-width: 95vw;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .hire-partners {
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .partners-image {
    max-width: 90vw;
  }
  .hire-cta {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .hire-content {
    padding: 20px 0 15px 0;
    gap: 1.2rem;
  }
  .hire-header h3 {
    font-size: 1.1rem;
  }
  .hire-title h2 {
    font-size: 1.1rem;
  }
} 
.hire-title {
  width: 100%;
  text-align: center;
}
.hire-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  display: inline-block;
}
@media (max-width: 900px) {
  .hire-title {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .hire-title h2 {
    font-size: 1.5rem;
  }
} 
.hire-cta {
  margin-top: 1.5rem;
  min-width: 180px;
  display: inline-block;
  background: #fff;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  border: 2px solid #fff;
}
.hire-cta:hover {
  background: #e0e6ed;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  border: 2px solid #e0e6ed;
}
@media (max-width: 900px) {
  .hire-cta {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
} 

/* HOW SECTION */
.how-section {
  width: 100%;
  background: #fff;
  padding: 70px 0 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-content {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  padding: 0 10px;
}
.how-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-section-image {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.how-steps {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.how-title {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  margin-bottom: 1.5rem;
}
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
}
.how-step-number {
  min-width: 38px;
  height: 38px;
  background: #60b801;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(96,184,1,0.08);
}
.how-step h3 {
  font-size: 1.1rem;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.how-step p {
  color: #222;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .how-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    padding: 0 0 0 0;
  }
  .how-image, .how-steps {
    width: 100%;
    flex: unset;
    padding: 0 10px;
  }
  .how-section-image {
    max-width: 90vw;
  }
  .how-step {
    justify-content: center;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .how-section {
    padding: 40px 0 20px 0;
  }
  .how-title {
    font-size: 1.2rem;
  }
  .how-step-number {
    min-width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .how-step h3 {
    font-size: 1rem;
  }
  .how-step p {
    font-size: 0.95rem;
  }
} 

.payment-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem; /* otprilike gap-10 */
  flex-direction: column;
  padding: 80px;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.payment-section .payment-image-wrapper {
  display: flex;
  justify-content: center;
}

.payment-section img {
  object-fit: contain;
  height: 100%;
  max-height: 320px; /* default za mobilne */
  width: auto;
  color: transparent;
}

@media (min-width: 768px) {
  .payment-section {
    flex-direction: row;
  }
  .payment-section img {
    max-height: 320px; /* md:h-80 */
  }
}

@media (min-width: 1024px) {
  .payment-section img {
    max-height: 400px; /* lg:h-[400px] */
  }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  width: 100vw;
  background: rgb(0 17 44/var(--tw-bg-opacity,1));
  padding: 80px 0 60px 0;
  overflow-x: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.testimonials-header h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.testimonials-header h3 {
  color: #b3e0ff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.testimonials-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  width: 100vw;
}
.testimonials-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0 2rem 0;
  width: 100vw;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.testimonials-carousel::-webkit-scrollbar {
  display: none;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  min-width: 320px;
  max-width: 350px;
  flex: 0 0 350px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.testimonial-client {
  font-weight: 700;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.testimonial-role {
  color: #60b801;
  font-size: 0.98rem;
  margin-bottom: 1rem;
}
.testimonial-text {
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
}
.carousel-arrow {
  background: #fff;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
  margin: 0 10px;
}
.carousel-arrow:hover {
  background: #b3e0ff;
  color: #fff;
}
.carousel-arrow.left {
  left: 0;
}
.carousel-arrow.right {
  right: 0;
}
@media (max-width: 900px) {
  .testimonials-section {
    padding: 50px 0 30px 0;
  }
  .testimonials-carousel {
    gap: 1rem;
    max-width: 95vw;
  }
  .testimonial-card {
    min-width: 260px;
    max-width: 90vw;
    padding: 1.2rem 1rem 1rem 1rem;
  }
}

/* FAQ SECTION */
.faq-section {
  width: 100%;
  background: #fff;
  padding: 70px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.faq-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  margin-bottom: 2.5rem;
  text-align: center;
}
.faq-list {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.faq-item {
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question:hover {
  background: #e0e6ed;
}
.faq-answer {
  padding: 1.2rem 1.5rem;
  color: #222;
  font-size: 1rem;
  display: none;
  animation: fadeIn 0.3s;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-icon {
  margin-left: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #60b801;
  transition: transform 0.3s, color 0.2s;
  pointer-events: none;
}
.faq-item.open .faq-icon {
  color: #60b801;
  transform: rotate(180deg);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 900px) {
  .faq-list {
    max-width: 95vw;
  }
  .faq-title {
    font-size: 1.5rem;
  }
}

/* CONTACT SECTION */
.contact-section {
  width: 100%;
  background: rgb(236 240 246/var(--tw-bg-opacity,1));
  padding: 70px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  width: 100%;
}
.contact-info {
  flex: 1;
  max-width: 400px;
  padding: 2rem 0 2rem 1rem;
}
.contact-title {
  margin-bottom: 1.2rem;
}
.contact-desc {
  color: #222;
  font-size: 1.1rem;
  line-height: 1.6;
}
.contact-form {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form label {
  font-size: 1rem;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid #cfd8e3;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: #f8f9fa;
  color: #222;
  transition: border 0.2s, box-shadow 0.2s;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #60b801;
  outline: none;
  box-shadow: 0 2px 8px rgba(96,184,1,0.08);
}
.contact-btn {
  margin-top: 0.5rem;
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem 0;
}
@media (max-width: 600px) {
  .contact-form {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    max-width: 98vw;
  }
  .contact-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 10px;
  }
  .contact-info {
    max-width: 98vw;
    padding: 0 0 1.2rem 0;
    text-align: center;
  }
}
.nav-contact-btn {
  margin-left: 1.2rem;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  background: rgb(96 184 1/var(--tw-bg-opacity,1));
  color: #fff !important;
  border: none;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.nav-contact-btn:hover {
  background: #60b801;
  color: #fff !important;
}
@media (max-width: 900px) {
  .nav-contact-btn {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
}

/* TERMS SECTION */
.terms-section {
  width: 100%;
  background: rgb(236 240 246/var(--tw-bg-opacity,1));
  padding: 130px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.terms-container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.terms-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: rgb(0 17 44/var(--tw-bg-opacity,1));
  margin-bottom: 1.2rem;
  text-align: center;
}
.terms-desc {
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}
.terms-content {
  color: #222;
  font-size: 1.05rem;
  line-height: 1.7;
}
.terms-content p {
  margin-bottom: 1.1rem;
}
.terms-subtitle {
  font-size: 1.2rem;
  color: #60b801;
  font-weight: 700;
  margin-top: 1.7rem;
  margin-bottom: 0.7rem;
}
.terms-list {
  margin-bottom: 1.2rem;
  padding-left: 1.2rem;
}
.terms-list li {
  margin-bottom: 0.7rem;
  list-style: disc inside;
}
@media (max-width: 600px) {
  .terms-container {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    max-width: 98vw;
  }
  .terms-title {
    font-size: 1.3rem;
  }
}
.nav-cta-btn {
  margin-left: 1.2rem;
  padding: 0.55rem 2rem;
  border-radius: 25px;
  font-size: 1.08rem;
  font-weight: 700;
  background: linear-gradient(90deg, #60b801 60%, #009e2a 100%);
  color: #fff !important;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(96,184,1,0.10);
  display: inline-block;
}
.nav-cta-btn:hover {
  background: #009e2a;
  color: #fff !important;
}
@media (max-width: 900px) {
  .nav-cta-btn, .nav-contact-btn {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    padding: 0.9rem 0;
    font-size: 1.15rem;
    display: block;
  }
  .nav-cta-btn {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .faq-section{
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 0.97rem;
  }
  .navbar-container {
    padding: 0.5rem 0.5rem;
  }
  .logo {
    font-size: 1.1rem;
  }
  .hero {
    padding: 40px 0 15px 0;
  }
  .hero-left h1 {
    font-size: 1.05rem;
  }
  .hero-left p {
    font-size: 0.95rem;
  }
  .hero-buttons .btn {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
  .jobs-header h2, .hire-title h2, .how-title, .faq-title, .terms-title {
    font-size: 1.1rem;
  }
  .jobs-section, .hire-section, .how-section, .faq-section, .contact-section, .terms-section {
    padding: 20px 0 15px 0;
  }
  .jobs-section-image, .partners-image, .how-section-image, .payment-image {
    max-width: 98vw;
    height: auto;
  }
  .testimonial-card {
    min-width: 210px;
    max-width: 98vw;
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
  }
  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  
  .contact-title {
    font-size: 1.1rem;
  }
  .footer-main {
    padding: 1rem 0.2rem 0.5rem 0.2rem;
    gap: 0.7rem;
  }
  .footer-logo-text {
    font-size: 1.1rem;
  }
  .footer-brand-desc {
    font-size: 0.95rem;
  }
  .footer-bottom {
    padding: 0.7rem 0 0.7rem 0;
  }
}
@media (max-width: 375px) {
  .hero-left h1, .jobs-header h2, .hire-title h2, .how-title, .faq-title, .terms-title {
    font-size: 0.95rem;
  }
  .btn, .btn-primary, .btn-secondary, .jobs-cta, .hire-cta, .nav-cta-btn, .nav-contact-btn {
    font-size: 0.95rem;
    padding: 0.6rem 0.7rem;
  }
  .testimonial-card {
    min-width: 160px;
    max-width: 97vw;
    padding: 0.5rem 0.2rem 0.5rem 0.2rem;
  }
}
/* Spreči horizontalni scroll na celom sajtu */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}
/* Sve slike responsive */
img, .hero-image, .jobs-section-image, .partners-image, .how-section-image, .payment-image {
  max-width: 100vw;
  height: auto;
  display: block;
}

/* Sekcije - osnovni padding i razmak između sekcija */
section {
  padding-top: 64px;
  padding-bottom: 64px;
  margin-bottom: 0;
}

/* Veći razmak između sekcija na desktopu */
@media (min-width: 1200px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* Smanjen padding na tabletima */
@media (max-width: 900px) {
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Mali ekrani - još manji padding i veći razmak između sekcija */
@media (max-width: 600px) {
  section {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

/* Ukloni dupliranje paddinga između sekcija */
section + section {
  margin-top: 0;
  border-top: 0;
}

/* Specifične sekcije - dodatno podešavanje gde je potrebno */
.hero, .jobs-section, .hire-section, .how-section, .faq-section, .contact-section, .testimonials-section, .payment-section {
  margin-bottom: 0;
  border-bottom: none;
}

/* Footer i navbar bez dodatnog paddinga */
.footer, .navbar {
  padding-top: 0;
  padding-bottom: 0;
}

/* Testimonials carousel responsive poboljšanja */
@media (max-width: 900px) {
  .testimonials-carousel {
    gap: 0.7rem;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .testimonial-card {
    min-width: 80vw;
    max-width: 90vw;
    padding: 1rem 0.7rem 1rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .testimonials-carousel-wrapper {
    overflow-x: hidden;
    padding-left: 0;
    padding-right: 0;
  }
  .testimonials-carousel {
    gap: 0.5rem;
    padding-left: 0;
    padding-right: 0;
    width: 100vw;
    max-width: 100vw;
  }
  .testimonial-card {
    width: 100vw;
    min-width: unset;
    max-width: unset;
    box-sizing: border-box;
    padding: 0.7rem 10px 0.7rem 10px;
    margin: 0;
    word-break: break-word;
  }
}
@media (max-width: 400px) {
  .testimonial-card {
    min-width: 96vw;
    max-width: 98vw;
    padding: 0.5rem 0.1rem 0.5rem 0.1rem;
  }
}

/* Kompaktniji footer - smanjen padding i gap */
.footer-main {
  padding: 1.2rem 0.7rem 0.7rem 0.7rem;
  gap: 0.7rem;
}
.footer-col {
  margin-bottom: 0.5rem;
}
.footer-bottom {
  padding: 0.5rem 0 0.5rem 0;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .footer-main {
    padding: 0.7rem 0.3rem 0.3rem 0.3rem;
    gap: 0.3rem;
  }
  .footer-col {
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 600px) {
  .footer-main {
    padding: 0.5rem 0.1rem 0.2rem 0.1rem;
    gap: 0.1rem;
  }
  .footer-col {
    margin-bottom: 0.1rem;
  }
  .footer-bottom {
    padding: 0.3rem 0 0.3rem 0;
    font-size: 0.95rem;
  }
}