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

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background-color: #f9fbfa;
  border-bottom: 1px solid #ddd;
  padding: 0.75rem 0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  max-height: 40px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 400;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #f27a1a;
}

.header-contact-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #444;
}

.header-contact a {
  text-decoration: none;
  color: #1a1a1a;
}

.header-lang {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: #1a1a1a;
}

.header-lang select {
  border: none;
  background: transparent;
  font-size: 0.9rem;
  color: #1a1a1a;
  appearance: none;
  cursor: pointer;
}



/* HERO */
.hero {
  background: linear-gradient(to bottom, #f3f7fc 0%, #fff 100%);
  padding: 6rem 0 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 1rem auto;
}

.hero p {
  font-size: 1.2rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.btn {
  background-color: #1d3666;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
}

.btn:hover {
  background-color: #12254c;
}

.hero-arrow {
  position: absolute;
  height: 80px;
  width: auto;
  z-index: 0;
}

.hero-arrow.left {
  top: 60%;
  left: 20%;
  transform: translateY(-50%);
}

.hero-arrow.right {
  top: 60%;
  right: 20%;
  transform: translateY(-50%);
  height: 80px;
}

/* IKONE SEKCIJA */
.icons-section {
  padding: 4rem 0;
  background-color: #fff;
  text-align: center;
  border-top: 1px solid #E5E7EB;
}

.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.icon-item {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.icon-item img {
  height: 24px;
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: middle;
}

.icon-item p {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

/* ISKUSTVO SEKCIJA */
.experience {
  background-color: #f9fbfa;
  padding: 4rem 0;
}

.experience .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media(min-width: 768px) {
  .experience .container {
    flex-direction: row;
    align-items: center;
  }
}

.experience-image {
  flex: 1;
  text-align: center;
}

.experience-text {
  flex: 1;
}

.experience-text .label {
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #666;
  letter-spacing: 1px;
}

.experience-text h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 1rem 0;
}

.experience-text p {
  font-size: 1rem;
  color: #333;
}

/* CTA SEKCIJA */
.cta {
  background-color: #1d3666;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

.cta h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* FOOTER */
.site-footer {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
  color: #333;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-brand img {
  max-height: 50px;
  margin-bottom: 1rem;
}

.footer-contact a,
.footer-links a,
.footer-social a {
  color: #333;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-social a:hover {
  text-decoration: underline;
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* SEKCIJA: Profesionalno iznajmljivanje */
.rental-relief {
  background-color: #f9fbfa;
  padding: 4rem 1rem;
}

.rental-flex {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media(min-width: 992px) {
  .rental-flex {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .rental-image {
    flex: 0 0 45%;
  }

  .rental-text {
    flex: 0 0 50%;
    padding-left: 2rem;
  }
}

.rental-image img {
  border-radius: 12px;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.rental-text .label {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #6B7280;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.rental-text h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #030712;
}

.rental-text p {
  font-size: 1rem;
  color: #030712;
  line-height: 1.6;
}

.icon-sun {
  height: 32px;
  margin-bottom: 1rem;
  margin-top: -2rem;
  margin-left: auto;
  display: block;
}
/* ZAŠTO IZNAJMLJIVAČI BIRAJU NAS */
.why-section {
  background-color: #f9fbfa;
  padding: 0rem 1rem;
  text-align: center;
}

.why-section .container {
  max-width: 1240px;
  margin: 0 auto;
}

.why-arrow {
  display: block;
  margin: 0 auto 1rem auto;
  height: 60px;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #6b7280;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #030712;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #030712;
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: start; /* poravnaj na vrh */
}

.why-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 260px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-item img {
  height: 24px;
  width: 24px;
  margin-bottom: 1rem;
  display: inline-block;
  object-fit: contain;
}

.why-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #030712;
  margin-bottom: 1rem; /* ovo je ključno za ujednačenu visinu naslova */
}

.why-item p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
  margin-top: auto; /* gura dolje */
  padding-bottom: 8px; /* mali razmak od dna */
}
/* SEKCIJA: Osiguranje nekretnine */
.insurance-section {
  background-color: #f9fbfa;
  padding: 4rem 1rem;
}

.insurance-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media(min-width: 992px) {
  .insurance-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .insurance-text {
    flex: 1;
    padding-right: 2rem;
  }

  .insurance-image {
    flex: 1;
  }
}

.insurance-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.insurance-label p {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #6B7280;
  font-weight: 500;
  letter-spacing: 1px;
}

.insurance-icon {
  height: 70px;
  margin-left: auto;
}

.insurance-text h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #030712;
}

.insurance-text p {
  font-size: 1rem;
  color: #030712;
  line-height: 1.6;
}

.insurance-image img {
  border-radius: 12px;
  width: 100%;
height: 360px;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center;
}
.steps-section {
  background-color: #f9fbfa;
  padding: 6rem 1rem;
}

.steps-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 3rem;
}

@media(min-width: 768px) {
  .steps-header {
    flex-direction: row;
    align-items: center;
  }
}

.steps-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #030712;
  margin-bottom: 0.5rem;
}

.steps-header p {
  font-size: 1rem;
  color: #030712;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: stretch;
}

.step-item {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.step-item img {
  height: 48px;
  width: 48px;
  margin-bottom: 1rem;
}

.step-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #030712;
  margin-bottom: 1rem;
}

.step-item p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin-top: auto; /* da tekst ide prema dnu */
}
/* FAQ / Accordion */
.faq-section {
  background-color: #f9fbfa;
  padding: 0rem 1rem;
  text-align: center;
}

.faq-section .section-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #6b7280;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.faq-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #030712;
  margin-bottom: 2rem;
}

.accordion {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  border-radius: 8px;
}

.accordion-item {
   border-top: 1px solid #e5e7eb;
  background: white;
}

.accordion-item:first-child {
  border-top: none;
}

.accordion-header {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  color: #030712;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header:hover {
  background: #f3f4f6;
}

.accordion-icon {
  font-size: 1.2rem;
  font-weight: normal; /* više nije bold */
  line-height: 1;
  color: #030712;
}

.accordion-content {
  display: none;
  padding: 0 1.5rem 1rem 1.5rem;
  font-size: 1rem;
  color: #374151;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-icon {
  content: "−";
}
.blue-cta {
  background-color: #1d3666;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

.blue-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.blue-cta p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: white;
}

.white-btn {
  background-color: #fff;
  color: #030712;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.white-btn:hover {
  background-color: #e5e7eb;
}

.cta-button-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-arrow {
  height: 40px;
  width: auto;
margin-top: 2rem

}

.cta-arrow.left {
  margin-right: 1rem;
}

.cta-arrow.right {
  margin-left: 1rem;
}
.site-footer {
  background-color: #f9fbfa;
  padding: 3rem 1rem 1rem;
  color: #030712;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-brand img {
  max-height: 50px;
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.footer-contact a,
.footer-links a {
  color: #030712;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social img {
  height: 24px;
  width: 24px;
  transition: opacity 0.3s ease;
}

.footer-social img:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.footer-social p {
  display: flex;
  gap: 1rem;
  align-items: center;
}

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

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* FORMA S UPITNIKOM */

/* MODAL OVERLAY */
.modal {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal.hidden {
  display: none;
}

/* MODAL BOX */
.modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  font-family: 'Inter', sans-serif;
}

/* CLOSE BUTTON */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #374151;
}

/* FORM STEP WRAPPER */
.form-step {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
}
.form-step.active {
  display: flex;
}

/* FORM ELEMENTS */
.modal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.modal-content label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.90rem;
  display: block;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.875rem;S
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-sizing: border-box;
  background: white;
}

/* BUTTONS */
.form-nav,
.form-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.next-btn,
.form-nav .btn:last-child,
.submit-btn {
  background-color: #1E3A8A;
  color: #fff;
}

.back-btn,
.form-nav .btn:first-child {
  background-color: #F3F4F6;
  color: #111827;
  border: 1px solid #D1D5DB;
}

/* Brojčana kontrola: poravnanje i centriranje brojeva */
.number-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.number-control input {
  width: 48px;
  text-align: center;
  font-size: 1rem;
  padding: 0.5rem 0;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
}

/* Minus/plus gumbi */
.number-control .minus,
.number-control .plus {
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
  font-weight: solid;
  border: 1px solid #d1d5db;
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
}

/* Checkbox sekcija */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #111827;
}

/* checkbox inputi */
.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
}
.hidden {
  display: none;
}
.modal-content .form-step label {
  margin-bottom: 0rem !important;
}

.modal-content .form-step input,
.modal-content .form-step select {
  margin-top: 0 !important;
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  z-index: 1000;
  width: 30px;
  height: 30px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 2rem 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .header-contact-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-left: 0;
    padding-top: 1rem;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-contact, .footer-links, .footer-social {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}


@media (max-width: 768px) {
  .responsive-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
  }
}


@media (max-width: 768px) {
  .header-contact-wrapper {
    display: none !important;
  }

  .hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .mobile-extra {
    margin-top: 2rem;
    border-top: 1px solid #ccc;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-extra .header-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .mobile-extra .header-lang {
    display: flex;
    justify-content: flex-start;
  }
}


@media (min-width: 769px) {
  #mobile-extra {
    display: none;
  }
}


@media (max-width: 768px) {
  .header-contact-wrapper {
    display: none;
  }
}


@media (max-width: 768px) {
  section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero {
    margin-top: 1rem;
    padding-top: 2rem;
  }

  .icons-section,
  .why-section,
  .insurance-section,
  .steps-section,
  .faq-section,
  .cta,
  .rental-relief {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}


@media (max-width: 768px) {
  .icon-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    align-items: center;
  }

  .icon-item img {
    margin-right: 1rem;
  }

  .icon-item p {
    text-align: left;
  }
}


@media (max-width: 768px) {
  .icons-section,
  .why-section,
  .insurance-section,
  .steps-section,
  .faq-section,
  .cta,
  .rental-relief {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}


@media (max-width: 768px) {
  .faq-section {
    text-align: left;
  }

  .accordion {
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-header {
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .accordion-content {
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 2rem 1.5rem;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .main-nav.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-extra {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .mobile-extra .mobile-contact-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
  }

  .mobile-extra select {
    width: 100%;
    max-width: 200px;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hamburger span {
    transition: all 0.3s ease;
  }
}


@media (min-width: 769px) {
  .header-lang select {
    padding: 0.4rem 1.2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f3f4f6;
    font-weight: 500;
    transition: border-color 0.3s, background-color 0.3s;
  }

  .header-lang select:hover {
    border-color: #999;
    background-color: #e5e7eb;
  }
}


@media (max-width: 768px) {
  .mobile-extra .mobile-contact-row select {
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f3f4f6;
    font-weight: 500;
    font-size: 0.95rem;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
  }

  .mobile-extra .mobile-contact-row select:focus {
    outline: none;
    border-color: #999;
    background-color: #e5e7eb;
  }
}


@media (max-width: 768px) {
  .hero {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}


@media (max-width: 768px) {
  .modal-content {
    margin: 1rem;
    width: calc(100% - 2rem);
    max-width: 100%;
  }
}


/* SUCCESS MESSAGE */
#success-modal {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

#success-modal.active {
  display: flex;
}

.success-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.success-box h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.success-box p {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 1.5rem;
}

.success-box strong {
  color: #030712;
}

.success-box button {
  background-color: #1E3A8A;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
}

.contact-icon {
  margin-right: 0.3rem;
  color: #1E3A8A;
}


.header-contact-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-icon {
  color: #1E3A8A;
  font-size: 1rem;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1e3a8a;
  color: #fff;
  padding: 1rem;
  text-align: center;
  z-index: 9999;
}
.cookie-banner button {
  margin-left: 1rem;
  background: #fff;
  color: #1e3a8a;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.cookie-banner.hidden {
  display: none;
}

