/* Optional: smooth scroll */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #111;
  overflow-x: hidden;
}

/* Container Styles */
.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 2;
  margin: auto;
}

.sim-section .container,
.atm-section .container,
.info-visa .container {
  max-width: 1200px;
}

/* Hero Section Overlay for better text visibility */
.sim-section::before,
.atm-section::before,
.info-visa::before,
.info-transport::before,
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

.weather-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/BackGround.webp);
  z-index: 1;
  pointer-events: none;
}

/* Hero Section Styles */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section .container {
  max-width: 1600px;
}

.hero-title {
  font-family: "Open Sans Hebrew Condensed", Sans-serif;
  font-size: 250px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0 auto 20px auto;
  line-height: 1;
}

.hero-content {
  text-align: right;
  font-family: "Assistant", Sans-serif;
  font-size: 27px;
  font-weight: 300;
  text-transform: none;
  font-style: normal;
  line-height: 30px;
  color: #fff;
  margin-bottom: 40px;
  width: 100%;
  max-width: 900px;
}
.hero-content p {
  margin: 0 0 15px 0;
}

.page-nav {
  display: flex;
  gap: 16px;
  flex-direction: column;
  z-index: 3;
  align-self: flex-start;
}
.page-nav a {
  background: rgba(0, 0, 0, 0.4196078431);
  color: #fff;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-family: "Assistant", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: none;
  outline: none;
  display: inline-block;
}
.page-nav a:hover {
  background: #333;
  color: #fff;
}

.nav-title {
  font-family: "Open Sans Hebrew Condensed", Sans-serif;
  font-size: 26px;
  color: #fff;
  margin: 0 0 8px 0;
  text-align: right;
}

.nav-buttons {
  display: flex;
  gap: 16px;
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 120px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
    min-height: auto;
    height: auto;
  }
  .hero-title {
    font-size: 60px;
  }
  .page-nav {
    flex-direction: column;
    gap: 10px;
    margin: auto;
  }
  .hero-content {
    font-size: 22px;
    width: 95%;
    text-align: center;
  }
  .nav-buttons {
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }
  .nav-buttons a {
    text-align: center;
    padding: 14px 18px;
  }
  .nav-title {
    text-align: center;
  }
}
/* Expanding Cards Styles */
.info-locations {
  background-color: #111;
}

.info-locations-title {
  font-family: "Open Sans Hebrew Condensed", Sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  padding: 12px 20px;
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.4196078431);
  border-radius: 5px;
}

/* Direction Filter Buttons */
.dir-filter {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

.dir-btn {
  font-size: 22px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7490196078);
  font-family: "Assistant", Sans-serif;
  padding: 8px 12px;
  border: 0;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7607843137);
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100px;
}
.dir-btn.is-active {
  background: #58A3FF;
  border-color: #58A3FF;
  color: #fff;
}

.ue_option.is-hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .dir-filter {
    display: none;
  }
}
.exp-wrapper {
  display: flex;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.ue_options {
  display: flex;
}

.ue_border {
  position: absolute;
  top: 0;
  left: 0;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.active .ue_border {
  width: 13%;
}

.ue_option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  cursor: pointer;
  transition: flex-grow 0.5s ease;
}
.ue_option .ue_shadow {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
  transition: 0.3s;
}
.ue_option .ue_label {
  position: relative;
  z-index: 2;
  text-align: right;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.ue_option .ue_text {
  font-family: "Assistant", Sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 26px;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease 0s, visibility 0s linear 0.7s;
}
.ue_option .ue_text a {
  color: #ffffff;
  text-decoration: none;
}
.ue_option .ue_text a:hover {
  text-decoration: underline;
}
.ue_option.active {
  flex-grow: 6;
}
.ue_option.active .ue_sideTitle {
  opacity: 0.25;
}
.ue_option.active .ue_shadow {
  background: rgba(0, 0, 0, 0.9);
}
.ue_option.active .accordion-title {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease 0.5s, visibility 0s linear 0.5s;
}
.ue_option.active .ue_text {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease 0.5s, visibility 0s linear 0.5s;
}

.ue_sideTitle {
  position: absolute;
  transform: translateY(-50%) rotate(-90deg);
  font-family: "Open Sans Hebrew", Sans-serif;
  font-weight: 700;
  font-size: 54px;
  letter-spacing: 0.06em;
  color: #ffffff;
  opacity: 0.9;
  pointer-events: none;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transition: opacity 0.35s ease;
}

.ue_label-inner {
  max-width: 70%;
  position: relative;
  right: 25px;
}

.accordion-title {
  font-family: "Open Sans Hebrew", Sans-serif;
  font-size: 54px;
  font-weight: 700;
  text-transform: none;
  font-style: normal;
  line-height: 1.1em;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease 0s, visibility 0s linear 0.7s;
}

.exp-wrapper.immediate-hide .accordion-title,
.exp-wrapper.immediate-hide .ue_text {
  transition: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

@media only screen and (min-resolution: 192dpi) {
  .active .ue_border {
    width: 20%;
  }
}
@media (max-width: 1024px) {
  .exp-wrapper {
    height: auto;
    overflow: visible;
  }
  .ue_options {
    flex-direction: column;
    gap: 12px;
    height: auto;
  }
  .ue_option {
    flex: none;
    min-height: unset;
    height: auto;
    transition: none;
  }
  .ue_option.active .ue_sideTitle {
    opacity: 0.6;
  }
  .ue_sideTitle {
    position: static;
    transform: none;
    margin: 6px 16px 0 16px;
    opacity: 0.9;
    white-space: nowrap;
    text-align: center;
    font-size: 24px;
  }
  .ue_border {
    position: relative;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    height: 54px;
  }
  .active .ue_border {
    width: 100%;
  }
  .ue_option .ue_label {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .ue_label-inner {
    margin: 8px 16px 16px 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
  }
  .ue_option.active .ue_label-inner {
    margin: 45px auto 0;
    max-height: 1000px;
  }
  .accordion-title,
  .ue_text {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease 0s, visibility 0s linear 0.6s;
  }
  .ue_option.active .accordion-title,
  .ue_option.active .ue_text {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease 0.2s, visibility 0s linear 0.2s;
  }
  .accordion-title {
    font-size: clamp(22px, 5.5vw, 32px);
    line-height: 1.2;
    margin: 0 0 8px 0;
  }
  .ue_text {
    font-size: clamp(16px, 3.8vw, 20px);
    line-height: 1.5;
  }
}
@media (max-width: 600px) {
  .info-locations-title {
    margin-top: 15px;
  }
  .ue_label-inner {
    margin: 0;
  }
  .ue_option.active .ue_label-inner {
    max-width: 90%;
    right: 0;
    margin-top: 45px;
  }
}
.navigation {
  background-color: #131313;
  min-height: 15vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.navigation .container {
  max-width: 1200px;
}
.navigation a {
  display: block;
  font-family: "Assistant", Sans-serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.92px;
  fill: #fff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.4196078431);
  padding: 5px 24px;
  transition: all 0.6s ease-in-out;
}
.navigation a:hover {
  opacity: 0.8;
  background-color: #7198CC;
}
.navigation a:first-of-type {
  background-color: #7198CC;
}

/* Weather Section Styles */
.weather-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 60px 0;
  position: relative;
  color: #fff;
}

.weather-title {
  font-family: "Open Sans Hebrew Condensed", Sans-serif;
  font-size: 70px;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
}

.weather-sub-title {
  font-family: "Assistant", Sans-serif;
  font-size: 60px;
  font-weight: 400;
  margin: 0 auto 15px;
  text-align: center;
}

.weather-content {
  font-family: "Assistant", Sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 36px;
  text-align: center;
  max-width: 450px;
}

.weather-regions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
}

.weather-region-item {
  background: #222;
  color: #fff;
  border-radius: 20px;
  padding: 10px 28px;
  font-family: "Assistant", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s, color 0.2s;
  cursor: pointer;
}

.weather-region-item:hover {
  background: #16a34a;
  color: #fff;
}

.weather-block-title {
  font-family: "Open Sans Hebrew Condensed", Sans-serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
  text-align: right;
}

.weather-block-content {
  font-family: "Assistant", Sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  text-align: right;
  line-height: 1.7;
}

.weather-blocks-container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 24px;
}

.weather-block {
  flex: 1 1 320px;
  max-width: 350px;
  min-width: 260px;
  border: 1px solid white;
  border-radius: 18px;
  margin-bottom: 0;
  padding: 24px 20px 18px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.weather-block-inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.weather-visit-period-title,
.weather-condition-title {
  font-family: "Open Sans Hebrew Condensed", Sans-serif;
  font-size: 22px;
  font-weight: 900;
  margin-top: 12px;
  margin-bottom: 6px;
  color: #fff;
}

.weather-cities-list,
.weather-visit-period,
.weather-condition {
  font-family: "Assistant", Sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  text-align: right;
  line-height: 1.7;
  margin-bottom: 10px;
}

.weather-image {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  margin-top: 10px;
  align-self: center;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

/* Custom Link Button Style */
.weather-link-btn {
  font-family: "Assistant", Sans-serif;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 10px;
  letter-spacing: 0.92px;
  color: #fff;
  background: radial-gradient(at top left, #E0E342 0%, rgba(35, 173, 140, 0.5803921569) 100%);
  box-shadow: 10px 20px 80px 0px rgba(30, 233, 50, 0.3);
  transition-duration: 0.5s;
  border-radius: 16px;
  padding: 24px 28px;
  display: inline-block;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.weather-link-btn:hover {
  filter: brightness(1.08) saturate(1.2);
  box-shadow: 0 8px 40px 0px rgba(30, 233, 50, 0.25);
}

@media (max-width: 900px) {
  .weather-title {
    font-size: 38px;
  }
  .weather-sub-title {
    font-size: 26px;
  }
  .weather-blocks-container {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .weather-block {
    max-width: 85%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .weather-title {
    font-size: 28px;
  }
  .weather-region-item {
    font-size: 15px;
    padding: 7px 14px;
  }
  .weather-block-title {
    font-size: 20px;
  }
  .weather-block {
    padding: 12px 15px;
  }
}
/* Transport Section Styles */
.info-transport {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 60px 0;
  position: relative;
  color: #fff;
}
.info-transport .title {
  font-family: "Open Sans Hebrew Condensed", Sans-serif;
  font-size: 60px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: center;
}

.transport-content {
  font-family: "Assistant", Sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 36px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.arrive-blocks-holder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  justify-content: center;
  margin-bottom: 24px;
}

.arrive-block-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .arrive-blocks-holder {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.arrive-block {
  flex: 1 1 320px;
  max-width: 350px;
  min-width: 260px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px 20px 18px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}
.arrive-block .title {
  font-family: "Open Sans Hebrew Condensed", Sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}
.arrive-block .content {
  font-family: "Assistant", Sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  text-align: right;
  line-height: 1.7;
  margin-bottom: 18px;
}
.arrive-block .btn {
  font-family: "Assistant", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.92px;
  color: #fff;
  background-image: radial-gradient(at top left, #E0E342 0%, rgba(35, 173, 140, 0.5803921569) 100%);
  box-shadow: 10px 20px 80px 0px rgba(30, 233, 50, 0.3);
  transition-duration: 0.5s;
  border-radius: 16px;
  padding: 16px 24px;
  display: inline-block;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0 auto;
}
.arrive-block .btn:hover {
  filter: brightness(1.08) saturate(1.2);
  box-shadow: 0 8px 40px 0px rgba(30, 233, 50, 0.25);
}

.arrive-block-inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .arrive-blocks-holder {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .arrive-block {
    max-width: 100%;
    width: 85%;
  }
  .info-transport .title {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .arrive-block {
    padding: 12px 15px;
  }
  .arrive-block-button {
    font-size: 15px;
    padding: 10px 12px;
  }
}
/* ===================== */
/* SIM Section Styles    */
/* ATMs Section Styles    */
/* ===================== */
.sim-section,
.atm-section {
  padding: 80px 0 60px 0;
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sim-section .title,
.atm-section .title {
  font-family: "Open Sans Hebrew Condensed", Sans-serif;
  font-size: 54px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: center;
}
.sim-section .content,
.atm-section .content {
  font-family: "Assistant", Sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 36px;
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.sim-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .atm-section .container,
  .sim-section .container {
    padding: 12px 0;
  }
  .atm-section .title,
  .sim-section .title {
    font-size: 32px;
  }
  .atm-section .content,
  .sim-section .content {
    font-size: 22px;
  }
}
/* ===================== */
/* Visa Section Styles   */
/* ===================== */
.info-visa {
  background: none;
  padding: 80px 0 60px 0;
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.info-visa .title {
  font-family: "Open Sans Hebrew Condensed", Sans-serif;
  font-size: 54px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: center;
}
.info-visa .content {
  font-family: "Assistant", Sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 36px;
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.info-visa .btn {
  font-family: "Assistant", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.92px;
  color: #fff;
  background-image: radial-gradient(at top left, #E0E342 0%, rgba(35, 173, 140, 0.5803921569) 100%);
  box-shadow: 10px 20px 80px 0px rgba(30, 233, 50, 0.3);
  transition-duration: 0.5s;
  border-radius: 16px;
  padding: 16px 24px;
  display: inline-block;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 18px;
}
.info-visa .btn:hover {
  filter: brightness(1.08) saturate(1.2);
  box-shadow: 0 8px 40px 0px rgba(30, 233, 50, 0.25);
}
.info-visa .visa-banner-link {
  margin-top: 24px;
}
.info-visa .visa-banner-link img {
  width: 100%;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 900px) {
  .info-visa .container {
    padding: 24px 8px;
  }
  .info-visa .title {
    font-size: 32px;
  }
  .info-visa .content {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .info-visa .container {
    padding: 12px 0;
  }
  .info-visa .btn {
    padding: 10px 12px;
  }
  .info-visa .visa-banner-link img {
    width: 95%;
    margin: auto;
  }
}/*# sourceMappingURL=page-country.css.map */