@charset "utf-8";


/*
Theme Name: ITexpert
Theme URI: https://smarvet.eu/wp-content/themes/itexpertthreee
Author: Rankica Petrušić
Author URI: https://rankica.dev/
Description: Tema za Smarvet
Tags: blue, white, two-columns, right-sidebar, custom-menu, editor-style, featured-images, language-support
Text Domain: itexpertthree
*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #EB5B38;
  --dark: #222235;
  --gray: #545B56;
  --white: #ffffff;
}

body {
  font-family: 'Figtree', sans-serif;
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
}

.arrow-down {
  width: 15px;
  height: 15px;
  transform: rotate(-45deg);
}

.arrow-up {
  width: 15px;
  height: 15px;
  border-left: 2px solid black;
  border-bottom: 2px solid black;
  transform: rotate(136deg);
}

/*ACCORDION*/
a.iw-so-acc-title {
  display: inline-block;
  width: 100%;
  border-radius: 25px;
  padding: 12px 43px 12px 12px;
  font-family: Figtree;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
  position: relative;
  border: 1px solid transparent;
  text-decoration: none;
}

.accordion-title {
  color: #222235;
  font-family: Figtree;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 15px;
  padding-left: 5px;
}

span.iw-so-tgl-open,
.iw-so-tgl-close {
  position: absolute;
  right: 22px;
}

.iw-so-acc-item .iw-so-tgl-close {
  display: none;
}

.iw-so-acc-item-active .iw-so-tgl-open {
  display: none;
}

.iw-so-acc-item-active .iw-so-tgl-close {
  display: block;
  position: absolute;
  top: 20px;
}

.iw-so-acc-content {
  margin-top: -27px;
  padding: 10px;
  margin-bottom: 20px;
}

.iw-so-acc-content p {
  color: #222235;
  font-family: Figtree;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bg-dark a.iw-so-acc-title {
  background: #222235;
  color: #FFF;
}

.bg-dark .arrow-down,
.bg-dark .arrow-up {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.bg-dark .iw-so-acc-item-active .arrow-up {
  border-left: 2px solid #222235;
  border-bottom: 2px solid #222235;
}

.bg-dark .iw-so-acc-item-active a.iw-so-acc-title {
  background: #fff;
  color: #222235;
  border: 1px solid #222235;
}

.bg-orange a.iw-so-acc-title {
  background: #EB5B38;
  color: #FFF;
}

.bg-orange .arrow-down,
.bg-orange .arrow-up {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.bg-orange .iw-so-acc-item-active .arrow-up {
  border-left: 2px solid #EB5B38;
  border-bottom: 2px solid #EB5B38;
}

.bg-orange .iw-so-acc-item-active a.iw-so-acc-title {
  background: #fff;
  color: #EB5B38;
  border: 1px solid #EB5B38;
}

.bg-light a.iw-so-acc-title {
  background: #E5E5E5;
  color: #222235;
}

.bg-light .arrow-down,
.bg-light .arrow-up {
  border-left: 2px solid #222235;
  border-bottom: 2px solid #222235;
}

.bg-light .iw-so-acc-item-active .arrow-up {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.bg-light .iw-so-acc-item-active a.iw-so-acc-title {
  background: #222235;
  color: #E5E5E5;
  border: 1px solid #E5E5E5;
}

/* ===================== NAV ===================== */
.header-box {
  display: flex;
  align-items: center;
}

.mobile-dropdown {
  margin-right: 15px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 104px;
  background: transparent;
  transition: background 0.3s;
}

.nav.scrolled {
  background: var(--dark);
}

.nav-logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  opacity: 1 !important;
}

p.nav-item {
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
}

p.nav-item img {
  vertical-align: middle;
  margin-right: 0;
  border-radius: 50%;
  border: 1px solid #fff;
  padding: 7px;
  background: #ffffff3d;
  width: 40px;
  height: 40px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 650px;
  overflow: hidden;
}

.hero-page {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 199px;
  padding-left: 15px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

/* ===================== SECTION WRAPPER ===================== */
.section {
  padding: 80px 104px;
}

.section-wide {
  padding: 80px 0;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

/* ===================== SECTION 1 – NEMA BRIGE ===================== */
.no-worry {
  padding: 80px 104px 60px;
}

.no-worry h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  max-width: 570px;
  margin-bottom: 32px;
}

.no-worry .approach-label {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.no-worry p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark);
  max-width: 570px;
}

/* ===================== TWO-COL LAYOUT ===================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 80px 104px;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.one-col {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  padding: 15px;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.one-col h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

.one-col p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 80px 104px;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.two-col img {
  width: 100%;
  max-height: 500px;
  border-radius: 15px;
  object-fit: cover;
  margin-top: 0;
  display: block;
}

.two-col-text h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

.two-col-text p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 16px;
}

/* ===================== FEATURE CARDS ===================== */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 600px;
  margin-top: 40px;
}

.feature-card {
  background: var(--dark);
  border-radius: 15px;
  padding: 32px 24px 24px;
  color: #fff;
}

.feature-card .check-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  margin-bottom: 16px;
  display: block;
}

.feature-card p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}

/* ===================== DARK SECTION ===================== */
.dark-section {
  background: var(--dark);
  padding: 80px 104px;
  position: relative;
  overflow: hidden;
}

.dark-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.dark-section-bg-img {
  position: absolute;
  inset: 0;
  right: 0;
  left: 50%;
  overflow: hidden;
}

.dark-section-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.dark-text-col h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.dark-text-col ul {
  list-style: none;
  margin-bottom: 40px;
}

.dark-text-col ul li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  padding-left: 28px;
  position: relative;
  margin-bottom: 4px;
}

.dark-text-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  /*background: var(--orange);*/
}

.dark-text-col .thunder-list li::before {
  display: none;
}

.dark-text-col .thunder-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.dark-text-col .thunder-list li svg {
  flex-shrink: 0;
}

/* ===================== TRANSPARENTNOST – 2col right ===================== */
.transparency-section {
  padding: 80px 104px;
}

.transparency-section .right-col {
  margin-left: auto;
  max-width: 660px;
}

.transparency-section h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

.transparency-section p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
}

/* ===================== ZAŠTO JE PROVJERA VAŽNA ===================== */
.why-section {
  padding: 80px 104px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-section h2,
h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

.why-section p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
}

.steps-list {
  list-style: none;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.steps-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 43px;
  width: 1px;
  height: calc(100% + 0px);
  background: var(--gray);
}

.step-circle {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.step-content h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
}

/* ===================== CTA BUTTON ===================== */
.btn-orange,
.why-section a {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.btn-orange:hover,
.why-section a:hover {
  opacity: 0.9;
}

/* ===================== QUOTE BANNER ===================== */
.quote-banner {
  margin: 0 105px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
  text-align: center;
  margin-bottom: 80px;
}

.row {
  margin: 0 105px;
  position: relative;
  padding: 10px 60px;
  text-align: left;
  margin-bottom: 40px;
}

.quote-banner-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  overflow: hidden;
}

.quote-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  position: absolute;
  top: 0;
  left: 0;
}

.quote-banner p {
  position: relative;
  z-index: 2;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  max-width: 725px;
  margin: 0 auto;
  line-height: 1.2;
}

/* ===================== KONTAKT ===================== */
.contact-section {
  padding: 60px 104px 80px;
}

.contact-section h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.contact-section .contact-intro {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
  max-width: 570px;
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-item h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-item h4 .icon-circle {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-section h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.contact-grid {
  align-items: start;
}

.contact-info-item p,
.contact-info-item address {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
  font-style: normal;
}

.contact-info-item p a,
.contact-info-item address a {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
  font-style: normal;
  text-decoration: none;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 60px;
}

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

.form-field {
  position: relative;
}

.form-field label {
  position: absolute;
  top: 37px;
  left: 20px;
  font-size: 16px;
  color: var(--gray);
  pointer-events: none;
  transition: 0.2s;
}

.form-field select {
  width: 100%;
  padding: 15px 29px 12px 20px;
  border: 1px solid var(--gray);
  border-radius: 25px;
  font-size: 16px;
  font-family: 'Figtree', sans-serif;
  color: var(--dark);
  background: transparent;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  margin-bottom: 15px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 15px 22px;
  border: 1px solid var(--gray);
  border-radius: 25px;
  font-size: 16px;
  font-family: 'Figtree', sans-serif;
  color: var(--dark);
  background: transparent;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  resize: none;
  margin-bottom: 15px;
}

fieldset.hidden-fields-container {
  border: none;
}

.dark-section-inner ul li::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 20px;
  margin-right: 8px;
  top: 5px;
  background-image: url("data:image/svg+xml;utf8,<svg width='11' height='20' viewBox='0 0 11 20' xmlns='http://www.w3.org/2000/svg'><path d='M6.5 0L0 11H5L4 20L11 9H6L6.5 0Z' fill='white'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

.dark-section-inner ul {
  list-style: none;
  padding-left: 0;
}

.form-field textarea {
  min-height: 120px;
  padding-top: 30px;
}

.form-field select {
  padding-right: 40px;
}

.form-select-arrow {
  position: absolute;
  right: 14px;
  top: 28%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--dark);
}

.form-submit {
  background: var(--orange);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s;
  font-family: 'Figtree', sans-serif;
}

.form-submit:hover {
  opacity: 0.9;
}

/* ===================== PARTNERI ===================== */
.partners-bar {
  background: #e5e5e5;
  padding: 24px 104px;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  box-sizing: border-box;
}

.partners-bar h3 {
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

.partners-logos {
  display: flex;
  gap: 24px;
  align-items: center;
}

.partners-logos a {
  transition: all 0.6s;
  filter: grayscale(100%);
  opacity: 0.4;
}

.partners-logos a:hover {
  filter: grayscale(0);
  opacity: 1;
}

.partners-logos img {
  height: 60px;
  object-fit: contain;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark);
  padding: 60px 104px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 40px;
  align-items: start;
}

.footer-logo img {
  height: 100px;
  object-fit: contain;
  max-width: 293px;
}

.footer-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  margin-top: 16px;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-col p,
.footer-col address {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 2.65;
  color: #fff;
  font-style: normal;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact-item span {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}

.footer-contact-item a {
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-icons a {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.social-icons a:hover {
  opacity: 1;
}

.footer-divider {
  border: none;
  border-top: 0.5px solid rgba(255, 255, 255, 0.4);
  margin: 0 -104px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 32px;
}

.footer-bottom-links {
  display: flex;
  gap: 40px;
}

.footer-bottom-links a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.footer-bottom-links a:hover {
  opacity: 1;
}

.footer-copyright {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}


/* ===================== LANG SWITCHER ===================== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
}

.lang-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.6;
  padding: 4px 6px;
  font-family: 'Figtree', sans-serif;
  transition: opacity 0.2s;
}

.lang-btn.active {
  opacity: 1;
}

.lang-btn:hover {
  opacity: 1;
}

/* ===================== MOBILE MENU ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.footer-bottom-links ul {
  display: inline;
}

.footer-bottom-links ul li {
  display: inline;
  margin-right: 15px;
}

select.pll-switcher-select {
  background: transparent;
  font-size: 19px;
  color: #fff;
  border: none;
}

select.pll-switcher-select option {
  background-color: #222235;
  color: #FFF;
}

/* ===================== IMPROVED MOBILE ===================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    padding: 16px 24px;
    flex-wrap: nowrap;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
  }

  .nav-links.open {
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
  }

  .lang-switcher {
    margin-left: auto;
    margin-right: 12px;
  }

  .hero {
    height: auto;
    min-height: 480px;
  }

  .hero-content {
    padding: 120px 24px 60px;
    max-width: 100%;
  }

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

  .two-col,
  .why-section,
  .contact-grid,
  .dark-section-inner {
    grid-template-columns: 1fr !important;
    padding: 40px 24px !important;
  }

  .two-col img {
    min-height: 250px;
  }

  .feature-cards {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .no-worry,
  .section,
  .transparency-section,
  .dark-section,
  .contact-section {
    padding: 40px 24px !important;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-banner,
  .row {
    margin: 0 16px 40px;
    padding: 10px 24px;
  }

  .quote-banner p {
    font-size: 24px;
  }

  .why-section {
    padding: 40px 24px;
  }

  .footer {
    padding: 40px 24px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .footer-divider {
    margin: 0 -24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .partners-bar {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .partners-logos {
    gap: 20px;
    flex-wrap: wrap;
  }

  .dark-section-bg-img {

    display: block;
    position: relative;
    left: 0;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .contact-form {
    padding-top: 0 !important;
  }

  h2 {
    font-size: 32px !important;
  }

  .two-col-text h2 {
    padding-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}

/* ===================== RESPONSIVE (legacy) ===================== */
@media (min-width: 1600px) {

  .two-col,
  .why-section,
  .contact-section,
  .transparency-section {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .two-col-text h2 {
    font-size: 36px;
  }

  .two-col-text p,
  .why-section p {
    font-size: 16px;
  }

  .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 1200px) {
  .nav {
    padding: 24px 40px;
  }

  .hero-content {
    padding-left: 40px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .section,
  .no-worry,
  .two-col,
  .transparency-section,
  .why-section,
  .dark-section,
  .contact-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .quote-banner,
  .row {
    margin: 0 40px 60px;
  }

  .partners-bar {
    padding: 24px 40px;
  }

  .footer {
    padding: 60px 40px 0;
  }

  .footer-divider {
    margin: 0 -40px;
  }
}

@media (max-width: 1024px) {
  .two-col-text h2 {
    font-size: 28px;
  }

  .two-col-text p {
    font-size: 14px;
    line-height: 1.4;
  }

  .two-col-text--s1 br {
    display: none;
  }

  .two-col-text--s1 p {
    margin-bottom: 12px;
  }

  .two-col-text {
    padding-top: 0 !important;
  }

  .two-col img {
    max-height: 380px;
  }

  .feature-card p {
    font-size: 15px;
  }

  .feature-cards {
    max-width: 100%;
  }

  #usluge .two-col-text {
    padding-top: 60px !important;
  }
}

@media (max-width: 900px) {
  .nav {
    gap: 16px;
    padding: 20px;
  }

  .mobile-dropdown {
    display: block;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    height: auto;
    min-height: 520px;
  }

  .hero-content {
    padding: 220px 24px 60px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .no-worry,
  .section,
  .two-col,
  .transparency-section,
  .why-section,
  .dark-section,
  .contact-section {
    padding: 48px 24px;
  }

  .two-col,
  .why-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .dark-section-inner {
    grid-template-columns: 1fr;
  }

  .dark-section-bg-img {
    display: block;
    position: relative;
    left: 0;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .partners-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }

  .quote-banner,
  .row {
    margin: 0 24px 48px;
    padding: 10px 24px;
  }

  .quote-banner p {
    font-size: 28px;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}