.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn.btn-primary .hero-btn-arrow-one {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(154.2deg, #C1AC35 12.42%, #795914 101.52%);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-left: 10px;
  }

  /* Hover effects */
  .btn.btn-primary:hover {
    background: linear-gradient(90deg, #C0AB2D 0%, #956D18 100%);
  }

  .btn.btn-primary:hover .hero-btn-arrow-one {
    background: linear-gradient(154.2deg, #737373 12.42%, #000000 101.52%);
  }
.arrow-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
}

.arrow-btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.arrow-btn.next img:first-child {
  border: 1.6px solid var(--color-white);
  border-radius: 50%;
}

.header-section {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  width: 165px;
  height: 45px;
}

.logo-wrapper img {
  width: 100%;
  height: 100%;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 10px;
  border: 1px solid var(--color-white);
  border-radius: 17px;
  font-family: var(--font-display);
  font-size: 20px;
  cursor: pointer;
}
.lang-switcher {
  opacity: 0.5;
}
.lang-switcher.active span, .lang-switcher.active {
  opacity: 1;
}

.header-nav .btn {
  padding: 16px 24px;
}

@media (max-width: 768px) {
  .header-container {
    padding: 20px;
  }
  .translation-box {
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 10px 0;
  }
  .header-nav {
    display: block;
  }
.header-nav .btn {
    font-size: 11px;
}
  .lang-switcher {
    padding: 2px 10px;
  }
  .nav-arrows {
    display: none !important;
  }
  #quoteBtn {
    display: none;
    padding: 4px 21px !important;
  }
}


 /* ===== Modal Styling ===== */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    overflow: auto;
  }

  .modal {
    background: #fff;
    width: 80%;
    max-width: 800px;
    display: flex;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
  }

  /* .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .modal {
    background: #fff;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
  } */

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }

  .modal-left {
    flex: 1;
    background: url('images/b42eba16e1d82e72421a5c487c5d039e1b042ba4.jpg')
                no-repeat center/cover;
  }

  .modal-right {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  .modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 25px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }

  .modal h2, .modal h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
    text-align: left;
  }

  .modal p {
    font-size: 14px;
    color: #444;
    margin-bottom: 24px;
    text-align: left;
    line-height: 1.5;
  }

  .modal input {
    padding: 16px 24px;
    border: 1px solid #000;
    border-radius: 30px;
    margin-bottom: 16px;
    font-size: 16px;
  }

  .modal button {
    width: 100%;
    height: 60px;
    padding: 16px 24px;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    background: linear-gradient(90deg, #C0AB2D 0%, #956D18 100%);
    color: #fff;
    font-weight: 700;
     border-radius: 30px;
  }

  .modal button:hover {
    background: linear-gradient(90deg, #D5BF42 0%, #A37622 100%);
  }

  .modal small {
    font-size: 12px;
    color: #777;
    text-align: left;
    line-height: 1.5;
    margin-top: 10px;
  }

  /* //2 */
.modal-iframe-content {
    background: #fff;
    width: 80%;
    max-width: 900px;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    /* display: none; */
    animation: fadeIn 0.3s ease;
  }

  .modal-iframe-content iframe {
    width: 100%;
    height: 75vh !important;
    overflow: hidden;
    border: none;
    transition: height 0.5s ease;
  }

  .iframe-close {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }

  @media (max-width: 700px) {
    .modal { flex-direction: column; }
    .modal-left { height: 200px; }
  }

.translation-box {
  display: flex;
  gap: 15px;
}