:root {
  /**
   * coolors
  https://coolors.co/palette/6e0d62-1c626b-449194-c9a459-872605-b55043-dc7171
   */

  --united-nations-brown: #872605;
  --bright-navy-blue: #449194;
  --bright-navy-blue-dark: #1c626b;
  --spanish-gray: #999999;
  --black-coral: #636774;
  --oxford-blue: #01213c;
  --yale-orange: #dc7171;
  --red-ncs: #6e0d62;
  --gunmetal: #223544;
  --gainsboro: #e0e0e0;
  --cultured: #fafafa;
  --white: #ffffff;
  --black: #000000;
  --onyx: #404040;
  --jet: #333333;

  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;

  --fs-1: calc(20px + 3.5vw);
  --fs-2: calc(18px + 1.6vw);
  --fs-3: calc(16px + 0.45vw);
  --fs-4: 15px;
  --fs-5: 14px;
  --fs-6: 13px;
  --fs-7: 12px;
  --fs-8: 11px;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * transition
   */

  --transition: 0.25s ease-in-out;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * border-radius
   */

  --radius-15: 14px;
  --radius-25: 20px;
}

/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span,
input,
label,
button,
ion-icon {
  display: block;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

button {
  cursor: pointer;
}

input {
  width: 100%;
}

ion-icon {
  pointer-events: none;
}

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

body {
  background: var(--white);
}

/*-----------------------------------*\
 * #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
  padding-bottom: 10px;
}

.btn {
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--fs-5);
  border-radius: 100px;
  padding: var(--padding, 8px 18px);
  border: var(--border-width, 2px) solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--bright-navy-blue);
  border-color: var(--bright-navy-blue);
}

.btn-primary:is(:hover, :focus) {
  background: var(--yale-orange);
  border-color: var(--white);
}

.btn-secondary {
  border-color: var(--white);
}

.btn-secondary:is(:hover, :focus) {
  background: hsla(0, 0%, 100%, 0.1);
}

.h1,
.h2,
.h3 {
  font-weight: var(--fw-800);
  font-family: var(--ff-montserrat);
  text-transform: uppercase;
}

.h1 {
  color: var(--white);
  font-size: var(--fs-1);
}

.h2,
.h3 {
  color: var(--gunmetal);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
}

.section-sub {
  animation-delay: 1ms;
  color: var(--bright-navy-blue);
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-family: var(--ff-montserrat);
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 15px;
}

.section-text {
  color: var(--black-coral);
  margin-bottom: 30px;
}

.card-text {
  color: var(--black-coral);
  font-size: var(--fs-5);
}

/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 61px;
  z-index: 4;
}

.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
  padding-block: 5px 5px 5px 0px;
  z-index: 1;
}

.header.active .header-top {
  position: fixed;
  background: var(--gunmetal);
}

.header-top .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: center;
}

.helpline-box .wrapper {
  display: none;
}

.helpline-box .icon-box {
  background: var(--bright-navy-blue);
  padding: 6px;
  border-radius: 50%;
  color: var(--white);
}

.helpline-box .icon-box ion-icon {
  --ionicon-stroke-width: 40px;
}

.header-top .logo {
  margin-inline: auto;
  padding: 5px;
}

.header-top .logo img {
  width: 80px;
}

.header-btn-group {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.search-btn,
.nav-open-btn {
  font-size: 30px;
  color: inherit;
}

/*-----------------------------------*/

/* .whatsapp-contact{
  margin: 20px;
  position: fixed;
  bottom: 0px;
  left: 0px;
} */
.whatsapp-contact img {
  margin: 15px;
  width: 60px;
  height: auto;
  position: fixed;
  bottom: 0px;
  left: 10px;
  z-index: 999;
}

.switch-lang {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 15px;
  cursor: pointer;
}

.lang-icon {
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.language-select {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}

.language-select option {
  background: var(--gunmetal);
  color: var(--white);
  font-size: 16px;
  padding: 10px;
}

/* Remove the previous ::before pseudo-element */
.switch-lang::before {
  display: none;
}

@media (max-width: 768px) {
  .lang-icon {
    font-size: 22px;
  }
}

#lang-switch {
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

#lang-switch:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#text08 {
  z-index: 1;
}

.header-bottom {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-top: 5px;
}

.header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px 15px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}
.logo-icon {
  z-index: -1;
}
.social-link {
  color: var(--white);
  padding: 5px;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
}

.social-link:is(:hover, :focus) {
  background: hsla(0, 0%, 100%, 0.2);
}

.header .btn {
  --padding: 4px 20px;
}

.header .navbar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: var(--white);
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in;
  z-index: 3000;
}

.navbar.active {
  right: 0;
  visibility: visible;
  pointer-events: all;
  transition: 0.25s ease-out;
  z-index: 3000;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 15px;
}

.navbar-top .logo img {
  width: 150px;
}

.nav-close-btn {
  font-size: 20px;
  color: var(--bright-navy-blue);
}

.nav-close-btn ion-icon {
  --ionicon-stroke-width: 80px;
}

.navbar-list {
  border-top: 1px solid hsla(0, 0%, 0%, 0.1);
}

.navbar-list li {
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
}

.navbar-link {
  padding: 15px 20px;
  color: var(--jet);
  font-weight: var(--fw-500);
  font-size: var(--fs-4);
  transition: var(--transition);
  text-transform: capitalize;
}

.navbar-link:is(:hover, :focus) {
  color: var(--bright-navy-blue);
}

.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}

/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/

.hero {
  background-image: url("../images/Background-top.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: hsla(0, 0%, 0%, 0.7);
  background-blend-mode: overlay;
  display: grid;
  place-items: center;
  min-height: 600px;
  text-align: center;
  padding-top: 125px;
}

.hero-title {
  margin-bottom: 20px;
}

.hero-text {
  color: var(--white);
  font-size: var(--fs-5);
  margin-bottom: 40px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/*-----------------------------------*\
 * #TOUR SEARCH
\*-----------------------------------*/

.tour-search {
  background: var(--bright-navy-blue);
  padding-block: var(--section-padding);
}

.search-tour-form .input-labels {
  color: var(--white);
  font-size: var(--fs-4);
  margin-left: 20px;
  margin-bottom: 10px;
}

.search-tour-form .input-text {
  margin: 0;
  background: var(--white);
  padding: 10px 15px;
  font-size: var(--fs-5);
  border-radius: 20px;
}

.search-tour-form .input-text::placeholder {
  color: var(--spanish-gray);
}

.search-tour-form .input-text::-webkit-datetime-edit {
  color: var(--spanish-gray);
  text-transform: uppercase;
}

.search-tour-form .input-wrapper {
  margin-bottom: 15px;
}

.tour-search .btn {
  width: 100%;
  --border-width: 1px;
  font-weight: var(--fw-600);
  margin-top: 35px;
}

/*-----------------------------------*\
 * #services
\*-----------------------------------*/

.services {
  padding-block: var(--section-padding);
}

.services-list,
.services-list > li:not(:last-child) {
  margin-bottom: 30px;
}

.services-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-25);
  height: 430px;
}

.services-card .baner-img {
  height: 100%;
}

.services-card .baner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-card .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-25);
  padding: 20px;
}

.services-card .card-rating {
  background: var(--bright-navy-blue);
  color: var(--white);
  position: absolute;
  top: 0;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 1px;
  transform: translateY(-50%);
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 14px;
}

.services-card .card-subtitle {
  color: var(--red-ncs);
  font-size: var(--fs-6);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.services-card .card-title {
  margin-bottom: 5px;
}

.services-card :is(.card-subtitle, .card-title) > a {
  color: inherit;
}

.services .btn {
  margin-inline: auto;
}

/*-----------------------------------*\
 * #visa
\*-----------------------------------*/

.visa {
  padding-block: var(--section-padding);
  padding-top: 0 !important;
}

.visa-list {
  margin: auto;
}

.visa-list > li:not(:last-child) {
  margin-bottom: 30px;
}

.visa-card {
  background: var(--cultured);
  overflow: hidden;
  border-radius: 15px;
}

.visa-card .card-banner {
  height: 250px;
}

.visa-card .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visa-card .card-content {
  padding: 30px 20px;
}

.visa-card .card-title {
  margin-bottom: 15px;
}

.visa-card .card-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-meta-list {
  background: var(--white);
  max-width: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 8px;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.15);
  border-radius: 50px;
}

.card-meta-item {
  position: relative;
}

.card-meta-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -1px;
  bottom: 4px;
  width: 1px;
  background: hsla(0, 0%, 0%, 0.3);
}

.meta-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-inline: 9px;
  color: var(--black-coral);
  font-size: var(--fs-8);
}

.meta-box > ion-icon {
  color: var(--bright-navy-blue);
  font-size: 13px;
}

.visa-card .card-price {
  background: linear-gradient(rgba(68, 145, 148, 0.7), rgba(68, 145, 148, 0.7)),
              url('../images/visa-2.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 80px 5px;
  text-align: center;
}
.card-price button{
  background: var(--united-nations-brown);
  border: 1px solid var(--white);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.card-price button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}



.visa-card .card-price .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 15px;
  margin-bottom: 10px;
}

.visa-card .card-price .reviews {
  font-size: var(--fs-5);
}

.visa-card .card-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  font-size: 14px;
}

.visa-card .card-rating ion-icon:last-child {
  color: hsl(0, 0%, 80%);
}

.visa-card .price {
  font-size: var(--fs-2);
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-800);
  margin-bottom: 20px;
}

.visa-card .price span {
  font-size: var(--fs-7);
  font-weight: initial;
}

.visa .btn {
  margin-inline: auto;
}

#visa-list {
  text-align: center;
}
.visa-list-card {
  background-color: var(--gainsboro);
  border-radius: var(--radius-15);
  padding: 15px;
}
.visa-list-item {
  text-align: left;
  margin-top: 15px;
  font-weight: bold;
  color: var(--jet);
}
.document-list {
  display: flex;
  flex-direction: column;
}
.document-list button {
  /* border: solid 1px black; */
  font-size: 25px;
}
.inline-block-items {
  display: inline-block;
}
#upDown-button {
  color: green;
}
#text52 {
  text-indent: 1em;
  color: var(--black);
}
/*-----------------------------------*\
 * #about
\*-----------------------------------*/

/*-----------------------------------*\
 * #contacts
\*-----------------------------------*/

.contacts {
  background: var(--bright-navy-blue);
  padding-block: var(--section-padding);
}

.contacts :is(.section-sub, .section-title, .section-text) {
  color: var(--white);
}

.contacts .section-text {
  font-size: var(--fs-5);
}

.cooperation-companies {
  /* background-color: white; */
   /*width: 100%;*/
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 50px auto auto 5px;
}
.coop {
  height: 50px;
  width: auto;
  padding: 10px 2px;
  /*border-radius: 15px;*/
}

/*-----------------------------------*\
 * #FOOTER
\*-----------------------------------*/

.footer-top {
  background: var(--gunmetal);
  padding-block: var(--section-padding);
  padding-bottom: 0 !important;
  color: var(--gainsboro);
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-brand img {
  width: 180px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-text {
  font-size: var(--fs-5);
  line-height: 1.7;
}

.footer-contact {
  margin-bottom: 30px;
}

.contact-title {
  position: relative;
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-500);
  margin-bottom: 30px;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--bright-navy-blue);
}

.contact-text {
  font-size: var(--fs-5);
  margin-bottom: 15px;
  max-width: 200px;
}

.contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item ion-icon {
  --ionicon-stroke-width: 40px;
}

.contact-link,
address {
  font-style: normal;
  color: var(--gainsboro);
  font-size: var(--fs-5);
}

.contact-link:is(:hover, :focus) {
  color: var(--white);
}

.form-text {
  font-size: var(--fs-5);
  margin-bottom: 20px;
}

.footer-form .input-text {
  background: var(--white);
  font-size: var(--fs-5);
  padding: 15px 20px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.footer-form .btn {
  width: 100%;
}

.footer-bottom {
  --gunmetal: hsl(205, 36%, 17%);
  background: var(--gunmetal);
  padding-block: 20px;
  text-align: center;
}

.copyright {
  color: var(--gainsboro);
  font-size: var(--fs-5);
  margin-bottom: 10px;
}

.copyright a {
  color: inherit;
  display: inline-block;
}

.copyright a:is(:hover, :focus) {
  color: var(--white);
}

.footer-bottom-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

.footer-bottom-list > li {
  position: relative;
}

.footer-bottom-list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -10px;
  bottom: 3px;
  width: 1px;
  background: hsla(0, 0%, 100%, 0.2);
}

.footer-bottom-link {
  color: var(--gainsboro);
  font-size: var(--fs-7);
  transition: var(--transition);
}

.footer-bottom-link:is(:hover, :focus) {
  color: var(--white);
}

/*-----------------------------------*\
 * #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 39px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: var(--bright-navy-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: var(--transition);
}

.go-top.active {
  opacity: 0.8;
  transform: translateY(0);
  visibility: visible;
}

.go-top:is(:hover, :focus) {
  opacity: 1;
}

/*-----------------------------------*\
 * #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 580px screen
 */

@media (min-width: 580px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 580px;
    margin-inline: auto;
  }

  .btn {
    --fs-5: 16px;
    --padding: 12px 30px;
  }

  section:not(.contacts) :is(.section-sub, .section-title, .section-text) {
    text-align: center;
  }

  .section-text {
    margin-bottom: 40px;
  }

  .card-text {
    --fs-5: 15px;
    text-align: justify;
  }

  /**
   * HEADER
   */

  .header {
    padding-top: 83px;
  }

  .helpline-box .icon-box {
    padding: 14px;
  }

  .header-top .logo img {
    max-width: unset;
  }

  .search-btn {
    font-size: 30px;
  }

  .nav-open-btn {
    font-size: 40px;
  }

  .header .btn {
    --fs-5: 14px;
    --padding: 6px 20px;
  }

  /**
   * HERO
   */

  .hero {
    min-height: 800px;
    padding-top: 85px;
  }

  .hero-text {
    --fs-5: 15px;
  }

  .btn-group {
    gap: 20px;
  }

  /**
   * TOUR SEARCH
   */

  .search-tour-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 15px;
  }

  .search-tour-form .input-wrapper {
    margin-bottom: 0;
  }

  .search-tour-form .input-text {
    padding: 16px 20px;
  }

  .tour-search .btn {
    grid-column: span 2;
    margin-top: 20px;
  }

  /**
   * services
   */

  .services-card .card-content {
    right: auto;
  }

  /**
   * FOOTER
   */

  .footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-form {
    grid-column: span 2;
  }

  .footer-bottom {
    text-align: left;
  }

  .copyright {
    margin-bottom: 0;
  }

  .footer-bottom-list {
    justify-content: flex-end;
  }
}

/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-5: 15px;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 800px;
  }

  .section-text {
    max-width: 60ch;
    margin-inline: auto;
  }

  /**
   * HEADER
   */

  .helpline-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  .helpline-box .wrapper {
    display: block;
    color: var(--white);
    font-size: var(--fs-6);
  }

  .social-list {
    z-index: 2;
    gap: 10px;
  }

  /**
   * services
   */

  .services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .services-list > li:not(:last-child) {
    margin-bottom: 0;
  }

  .services-card .card-content {
    right: 20px;
  }

  /**
   * visa
   */

  .visa-list {
    margin-bottom: 50px;
  }

  .visa-list > li:not(:last-child) {
    margin-bottom: 40px;
  }

  .visa-card {
    display: grid;
    grid-template-columns: 1.3fr 1.5fr 1fr;
  }

  .visa-card .card-banner {
    height: 100%;
  }

  .visa-card .card-content {
    padding: 40px;
  }

  .visa-card .card-price {
    display: grid;
    place-content: center;
  }

  .visa-card .card-price .wrapper {
    margin-bottom: 15px;
  }

  /**
   * about
   */

  .about {
    padding-bottom: calc(var(--section-padding * 2));
  }

  .about-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /**------------
   */

  .contacts .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .contacts-content {
    width: calc(100% - 225px);
  }

  .contacts .section-text {
    margin-inline: 0;
  }

  /**
   * FOOTER
   */

  .form-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

  .footer-form .input-text {
    margin-bottom: 0;
  }

  .footer-form .btn {
    width: max-content;
  }
}

/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1050px;
  }

  /**
   * HEADER
   */

  .header.active .header-top {
    position: unset;
    background: unset;
  }

  .nav-open-btn,
  .navbar-top {
    display: none;
  }

  .header-bottom {
    border-bottom: none;
  }

  .header.active .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    color: var(--onyx);
    box-shadow: 0 2px 5px hsla(0, 0%, 0%, 0.08);
    transition: var(--transition);
  }

  .header-bottom .container {
    padding-block: 0;
  }

  .header .navbar {
    all: unset;
  }

  .navbar-list {
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-list li {
    border-bottom: none;
  }

  .navbar-link {
    color: var(--white);
    --fs-4: 16px;
    font-weight: unset;
    text-transform: uppercase;
    padding: 20px 15px;
  }

  .header.active .navbar-link {
    color: var(--onyx);
  }

  .header.active .navbar-link:is(:hover, :focus) {
    color: var(--bright-navy-blue);
  }

  .header.active .social-link {
    color: var(--onyx);
    border-color: hsla(0, 0%, 0%, 0.15);
  }

  .overlay {
    display: none;
  }

  /**
   * HERO
   */

  .hero .container {
    max-width: 740px;
  }

  /**
   * TOUR SEARCH
   */

  .search-tour-form {
    grid-template-columns: repeat(5, 1fr);
  }

  .tour-search .btn {
    --padding: 15px;
    grid-column: unset;
    margin-top: 0;
  }

  /**
   * services
   */

  .services-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * visa
   */

  .meta-box {
    --fs-8: 13px;
  }

  .meta-box > ion-icon {
    font-size: 15px;
  }

  .visa-request button{
    background: var(--united-nations-brown);
    border: 1px solid var(--white);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .visa-request button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  }
  /**
   * contacts
   */

  .contacts .section-title {
    max-width: 25ch;
  }

  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .footer-form {
    grid-column: unset;
  }

  .form-wrapper {
    flex-direction: column;
  }

  .footer-form .btn {
    width: 100%;
  }
}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * spacing
     */

    --section-padding: 100px;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1180px;
  }
}

/* Discover Cars Section */
.discover-cars {
  background: linear-gradient(rgba(68, 145, 148, 0.7), rgba(68, 145, 148, 0.7)),
              url('../images/cars.jpg') center/cover no-repeat;
  padding: 30px 0;
  color: var(--white);
  position: relative;
}

.discover-cars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 20px;
}

.discover-cars .container {
  position: relative;
 
}

.discover-cars .section-title {
  color: var(--white);
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.discover-cars-widget {
  padding: 0px;
  border-radius: 20px;
}

.discover-cars-widget > div {
  max-width: 960px;
  margin: 0 auto;
}

/* Apply Vazirmatn font to Farsi text */
html[lang="fa"] {
  font-family: 'Vazirmatn', sans-serif;
}

/* Ensure Farsi text in specific elements uses Vazirmatn */
html[lang="fa"] p,
html[lang="fa"] span,
html[lang="fa"] div,
html[lang="fa"] h1,
html[lang="fa"] h2,
html[lang="fa"] h3,
html[lang="fa"] h4,
html[lang="fa"] h5,
html[lang="fa"] h6 {
  font-family: 'Vazirmatn', sans-serif;
}

/* Ensure Farsi text in the footer uses Vazirmatn */
html[lang="fa"] .footer-text {
  font-family: 'Vazirmatn', sans-serif;
  line-height: 1.6;
}

.discover-flights {
  padding: var(--section-padding);
  background: var(--cultured);
}

.discover-flights .container {
  max-width: 1000px;
  margin: 0 auto;
}

.kiwi-widget-container {
  margin-top: 20px;
  background: var(--white);
  border-radius: 15px;
  padding: 0px;
  box-shadow: 0 5px 20px hsla(0, 0%, 0%, 0.1);
}

#tequila-widget {
  min-height: 500px;
  width: 100%;
}


@media (max-width: 768px) {
  .flight-card {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .price {
    text-align: center;
  }

  .input-group {
    grid-template-columns: 1fr;
  }

  .radio-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .radio-group label {
    width: 100%;
    text-align: center;
  }
}


