:root{
    --primary-color : #287194;

    --primary-text : #4c535a;
}

@font-face {
    font-family: 'castle';
    src: url("../fonts/Far.Fanni.ttf") format('opentype');
}

@font-face {
    font-family: 'uniSan';
    src: url("../fonts/Uni\ Sans\ Heavy.otf") format('opentype');
}

@font-face {
    font-family: 'shabnam';
    src: url("../fonts/Shabnam-FD.woff2") format('opentype');
}

@font-face {
    font-family: 'fani';
    src: url("../fonts/Far.Fanni.ttf") format('truetype');
}

@font-face {
    font-family: 'beyroot';
    src: url("../fonts/Mj\ Beirut\ Light\ .ttf") format('opentype');
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: "shabnam", sans-serif;
    background-color: #ffffff;
    position: relative;
}

a{
    text-decoration: none;
}

button{
    cursor: pointer;
    border: none;
    font-family: 'shabnam';
}

.navbar{
    width: 100%;
    height: 75px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

.navDrop{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.navDropBtn{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    color: var(--primary-color);
    border-radius: 8px;
    transition: all 200ms ease-in-out;
}

.navDropBtn i{
    font-size: 18px;
    transition: all 200ms ease-in-out;
}

.navDropMenu{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 600px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: rgba(0,0,0,0.15)0px 6px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:  all 250ms ease-in-out;
    z-index: 999;
}

.navDropMenuimg{
    width: 50%;
    height: 250px;
    border-radius: 15px;
    /* ############################# ADDED ################################ */
    transition: all 250ms ease;
    /* ############################# ADDED ################################ */
}

.navDropMenuCols{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.navDropMenuCol{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.navDropMenuCol a{
    color: #909294 !important;
    font-size: 16px !important;
    height: 40px;
}

.navDropMenuCol a:hover{
    color: #287194 !important;
}

.navDrop:hover .navDropMenu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.logoImg{
    height: 75%;
}

.navMenu{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.navMenu a , .mobNav a{
    text-decoration: none;
    font-size: 18px;
    color: var(--primary-color);
}

.mobNav a{
    height: 55px;
    width: 100%;
    border-bottom: 1px solid #d7d7d7;
    display: flex;
    align-items: center;
    justify-content: start;
}

.topSlider{
    width: 100%;
    height: 75vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bgImages{
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    overflow: hidden;
}

.bgiSingle{
    width: 100%;
    height: 100%;
}

.topTitles{
    width: 50%;
    height: 100vh;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.singleTitle{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.stTitle{
    font-size: 82px;
    color: #ffffff;
    font-family: 'fani';
}

.stDesc{
    width: 100%;
    text-align: justify;
    text-justify: inter-word;
    color: #e9e9e9;
    font-size: 14px;
}

.stBtn{
    width: 175px;
    height: 60px;
    border-radius: 7px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    background-color: var(--primary-color);
    font-size: 18px;
    margin-top: 50px;
    font-family: 'fani';
}

.topImages{
    position: relative;
    width: 45%;
    height: 100%;
    z-index: 2;
}

.topImgCont{
    width: 200%;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: start;
    gap: 25px;
    overflow: hidden;
}

.SingleImg{
    width: 275px;
    height: 50%;
    background-color: aquamarine;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.SingleImg.active{
    height: 60%;
}

.SingleImg img{
    width: 100%;
    height: 110%;
    border-radius: inherit;
}

.SingleImg.active img{
    height: 100%;
    margin-top: 0;
}

.chooseCont{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    position: relative;
    z-index: 2;
}

.chooseTop{
    position: absolute;
    top: 55%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 80%;
    height: 250px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.chooseTop::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    backdrop-filter: url(#glass-distortion) blur(3px);
    -webkit-backdrop-filter: url(#glass-distortion) blur(3px);
    pointer-events: none;
    border-radius: inherit;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(255, 255, 255, 0.2) 0px -3px 0px inset;
}

.chooseTopType{
    width: 100%;
    height: 100px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: start;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    gap: 25px;
    position: relative;
}

.chooseType{
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.chooseType img{
    width: 60px;
}

.chooseType span{
    font-size: 14px;
    color: #ffffff;
}

.selectedType{
    width: 90px;
    height: 7px;
    position: absolute;
    right: 2.5%;
    bottom: 0;
    background-color: #ffffff;
    border-radius: 5px 5px 0 0 ;
    transition: all 250ms ease-in-out;
}

.chooseTopForm{
    width: 100%;
    height: calc(100% - 100px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.ctfSingle{
    width: calc(100% / 4.2);
    height: 60px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 15px;
    cursor: pointer;
    backdrop-filter: blur(100px);
    z-index: 5;
    margin-top: 34px;
}

.ctfSingle2{
    width: 100%;
    height: 60px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 15px;
    cursor: pointer;
    backdrop-filter: blur(100px);
    z-index: 5;
    margin-top: 10px;
    color: #ffffff;
}

.sDate , .fDatecont{
    font-size: 18px;
    color: #ffffff;
}

.tedad{
    color: #ffffff;
}

.ctfBtn{
    background-color: #ffffff;
    color: var(--primary-color);
    font-size: 18px;
    justify-content: center;
    border: none;
}

.mainContaner{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 25px;
    padding-bottom: 25px;
}

.hotelSlider{
    width: 80%;
    position: relative;
    display: flex;
    align-items: center;
}

.sliderBtn{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: rgba(0,0,0,0.15) 0px 2px 6px;
}

.sliderPrev{
    right: -60px;
}

.sliderNext{
    left: -60px;
}

.singleCityHotel{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.hotelTitleSec{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.hotelTitleSec a{
    background-color: #d9f3ff;
    color: var(--primary-color);
    padding: 10px;
    border-radius: 7px;
}

.hotelsTitle{
    font-size: 22px;
    font-weight: bold;
}

.mashhadHotels{
    width: 100%;
    height: 385px; 
    padding-top: 25px;
    display: flex;
    align-items: stretch;
    justify-content: start;
    gap: 22px;
    overflow-x: hidden;
}

.mashhadHotelsSingle{
    min-width: calc(100% / 4.5);
    max-width: calc(100% / 4.48);
    height: fit-content;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 12px;
    padding: 10px;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    cursor: pointer;
}

.mashhadHotelsSingle img{
    width: 100%;
    height: 155px;
    border-radius: 15px;
}

.hotelStars{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 7px;
}

.hotelStars img{
    width: 15px;
    height: 15px;
}

.hotelAddr{
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #909294;
}

.hotelPriceMain{
    display: flex;
    align-items: center;
    color: #4c535a;
    font-size: 14px;
}

.hotelPriceNight{
    font-size: 20px;
    color: #000000;
}

.hotelBottom{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hoteBadges{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    gap: 7px;
}

.hotelMainBtn{
    background-color: #ffffff;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.tourDestImg{
  width: 100%;
  height: 170px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.tourDestBadge{
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(255,255,255,0.9);
  color: var(--primary-color);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 10px;
  font-weight: bold;
}

.tourDestTitle{
  font-size: 18px;
  font-weight: bold;
  color: #222;
}

.tourDestSub{
  font-size: 13px;
  color: #909294;
  line-height: 1.8;
  height: 50px;
}

.tourDestBottom{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 5px;
}

.tourDestPrice{
  font-size: 13px;
  color: #4c535a;
}

.tourDestPrice b{
  font-size: 16px;
  color: #000;
}

.tourDestBtn{
    background-color: #ffffff;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.singleBadge{
    background-color: #d9f3ff;
    color: var(--primary-color);
    border-radius: 7px;
    font-size: 12px;
    padding: 7px;
}

.aboutContaner{
    width: 80%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.aboutTxt{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 25px;
}

.aboutTitle{
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
}

.aboutSub{
    width: 70%;
    text-align: justify;
}

.aboutImg{
    height: 90%;
    border-radius: 15px;
}

.whyNegin{
    width: 80%;
    height: 70vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 25px;
    margin-top: 60px;
}

.whyNegin2{
    width: 80%;
    height: 50vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 25px;
    margin-top: 60px;
}

.whyTitle{
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
}

.whySub{
    font-size: 16px;
    color: #4c535a;
}

.whyUsMain{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.whyUsMain img{
    width: calc(100% / 3.2);
    border-radius: 15px;
}

.footer{
    width: 100%;
    height: 40vh;
    background-color: #102c39;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footerTitle{
    font-size: 24px;
    color: #ffffff;
    font-family: 'uniSan';
}

.footeLinks{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.footeLinks a{
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
}

.footerSocials{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.footerSocialssingle{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footerSocialssingle img{
    height: 50%;
}

.margTp{
    margin-top: 250px;
}

.datePickCont{
    width: calc(100% / 4.2);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.tourForm{
    width: calc(100% / 5);
    position: relative;
}

.small.tourForm{
    width: calc(100% / 10);
}

.ctfSingle.ctfBtn.tourForm{
    width: calc(100% / 9);
}

.datePickContHead{
    color: #ffffff;
    font-size: 18px;
}

/* ####################################################### */

.datePickerCont{
    position: fixed;
    width: 60%;
    border-radius: 25px;
    z-index: 100;
    background-color: #ffffff;
    top: 100px;
    right: -100%;
    transform: translateX(50%);
    z-index: 22;
    padding: 25px;
    transition: all 500ms ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.DPCtop{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.DPCtop i{
    font-size: 24px;
}

.DPCclose , .NDPclose{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.datePickers{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.singleDate{
    width: 48%;
    height: 100%;
}

.SDTitle{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.SDTMonth , .SDTMonthE{
    font-size: 20px;
}

.SDTYear , .SDTYearE{
    font-size: 16px;
    color: #909294;
}

.calendar{
    border-collapse: collapse;
    width: 100%;
    margin-top: 15px;
    margin-right: 2.5%;
}

.thead{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: normal;
}

th{
    font-weight: normal;
    font-size: 14px;
}

.SDTday{
    width: 55px;
    height: 55px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    cursor: pointer;
    border-radius: 7px;
    transition: all 250ms ease-in-out;
}

.SDTday.holiday{
    color: #ff0000;
}

.SDTday.today{
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.SDTday.disable{
    pointer-events: none;
    opacity: 0.25;
}

.SDTday:hover{
    background-color: var(--primary-color);
    color: #ffffff;
}

.DateBtn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    margin-top: -30px;
}

.DateBtn button{
    height: 30px;
    width: 30px;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.numDayPicker{
    position: fixed;
    width: 60%;
    border-radius: 25px;
    z-index: 3;
    background-color: #ffffff;
    top: 100px;
    right: -100%;
    transform: translateX(50%);
    z-index: 22;
    padding: 25px;
    transition: all 500ms ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.numDayPickerMain{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;
    margin-top: 25px;
}

.NDPsingleDay{
    width: 19%;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 15px 0;
    cursor: pointer;
}

.NDPHead{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #909294;
    font-size: 14px;
}

.NDPTitle{
    color: var(--primary-color);
    font-size: 32px;
    font-weight: bold;
}

.NDPDate{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    color: var(--primary-color);
}

.numafrad{
    position: fixed;
    width: 50%;
    border-radius: 25px;
    z-index: 3;
    background-color: #ffffff;
    top: 100px;
    right: -100%;
    transform: translateX(50%);
    z-index: 22;
    padding: 25px;
    transition: all 500ms ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pickNumAf{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.singleNumAf{
    width: 30%;
    height: 250px;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.numAfSub{
    width: 100%;
    height: 40px;
    margin-top: 25px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 10px;
}

.SNAFImg{
    width: 100px;
}

.SNAFNum{
    font-size: 32px;
}

.SNAFTitle{
    color: #636363;
}

.SNAFBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.SNAFBtn button{
    width: 40px;
    height: 40px;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.dateInpHead{
    color: #ffffff;
    font-size: 18px;
}

#afP{
    color: #ffffff;
}

.tourForm{
    display: none;
}

/* ######################################### */

.mabdaCont , .maghsadCont{
    position: absolute;
    width: 150%;
    height: 250px;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    z-index: 100;
    border-radius: 15px;
    overflow-y: auto;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    display: none;
}

.mabdaCont.active , .maghsadCont.active{
    display: flex;
}

.singleMabda , .singleMaghsad{
    width: 90%;
    margin-right: 5%;
    margin-top: 5px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: start;
    transition: all 250ms ease-in-out;
    cursor: pointer;
    border-bottom: 1px solid #d4d4d4;
}

.singleMabda:hover{
    background-color: #a3e1fe36;
}

.singleMaghsad:hover{
    background-color: #a3e1fe36;
}

.mobNav{
    width: 100%;
    height: 300px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 15px 25px;
    gap: 25px;
    position: fixed;
    top: -100%;
    right: 0;
    z-index: 98;
    border-radius: 0 0 15px 15px;
    transition: all 500ms ease-in-out;
}

.mobNav.active{
    top: 75px;
}

.mobNavBtn{
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    display: none;
    background-color: transparent;
}


@media (max-width: 1300px){
    .datePickerCont{
        width: 80%;
    }

    .calendar{
        margin-right: 0;
    }

    .DPCtop{
        padding: 0 25px;
    }

    .numDayPicker{
        width: 100%;
        top: inherit;
        bottom: 0;
        right: -100%;
        transform: translateX(50%);
        border-radius: 25px 25px 0 0;
        padding: 25px 0;
    }

    .NDPsingleDay{
        width: 30%;
        height: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        gap: 15px;
    }

    .NDPTitle{
        font-size: 20px;
    }

    .NDPDate{
        margin-top: 0;
    }
}


@media (max-width: 992px) {
    .datePickerCont{
        width: 90%;
    }

    .bgTitle{
        font-size: 80px;
        text-align: center;
        margin-top: 20px;
    }
    .mashhadHotelsSingle{
        min-width: calc(100% / 3.5);
    }
    .topSlider{
        height: 90vh;
    }
    .chooseTop{
        width: 100%;
        height: 450px;
        top: auto;
        bottom: 0;
        right: 0;
        transform: none;
        border-radius: 25px 25px 0 0;
    }
    .chooseTopForm{
        flex-wrap: wrap;
    }
    .datePickCont{
        width: calc(100% / 2.1);
    }
    .ctfSingle.ctfBtn.hotelForm{
        width: calc(100% / 2.1);
    }
    .ctfSingle.ctfBtn.tourForm{
        width: 100%;
    }
    .ctfSingle2{
        font-size: 16px;
    }
    .sDate , .fDatecont{
        font-size: 14px;
    }
    .selectedType{
        right: 7%;
    }
    .small.tourForm{
        width: calc(100% / 4.2);
    }
}

@media (min-width: 768px) {
    .mobNav{
        display: none;
    }
}

@media (max-width: 768px) {
    .hotelTitleSec{
        flex-direction: column;
        justify-content: start;
        align-items: center;
        gap: 7px;
    }

    .dateInp{
        width: 90%;
        justify-content: start;
    }

    .mashhadHotelsSingle{
        min-width: 90%;
    }

    .mobNavBtn{
        display: flex;
    }

    .seeRoom{
        width: 90%;
        margin-top: 0;
    }

    .datePickerCont{
        width: 100%;
        top: inherit;
        bottom: 0;
        right: -100%;
        transform: translateX(50%);
        border-radius: 25px 25px 0 0;
        padding: 25px 0;
    }

    .noMob{
        display: none;
    }

    .singleDate{
        width: 100%;
    }

    .calendar{
        margin-right: 0;
    }

    .DPCtop{
        padding: 0 25px;
    }

    .numDayPicker{
        width: 100%;
        top: inherit;
        bottom: 0;
        right: -100%;
        transform: translateX(50%);
        border-radius: 25px 25px 0 0;
        padding: 25px 0;
    }

    .NDPsingleDay{
        width: 30%;
        height: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        gap: 15px;
    }

    .NDPTitle{
        font-size: 20px;
    }

    .NDPDate{
        margin-top: 0;
    }

    .footer{
        flex-direction: column;
    }

    .footeLinks{
        gap: 20px;
    }

    .aboutHotelFo{
        width: 100%;
    }

    .numafrad{
        width: 100%;
        top: inherit;
        bottom: 0;
        right: -100%;
        transform: translateX(50%);
        border-radius: 25px 25px 0 0;
        padding: 15px;
    }

    .pickNumAf{
        flex-direction: column;
        gap: 25px;
    }

    .singleNumAf{
        flex-direction: row;
        width: 100%;
        height: 100px;
    }

    .SNAFImg{
        width: 60px;
    }

    .SNAFTitle{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .navMenu{
        gap: 5px;
        display: none;
    }

    .navMenu a{
        font-size: 14px;
    }

    .footSep{
        display: none;
    }

    .aboutContaner{
        flex-direction: column;
        width: 100%;
        align-items: center;
        height: auto;
    }
    .aboutTxt{
        align-items: center;
    }
    .aboutSub{
        width: 80%;
    }
    .aboutTitle{
        font-size: 32px;
    }
    .aboutImg{
        display: none;
    }

    .whyNegin{
        height: 100%;
        padding-bottom: 40px;
    }
    .whyTitle{
        font-size: 24px;
    }
    .whyUsMain{
        flex-direction: column;
        gap: 20px;
    }
    .whyUsMain img{
        width: 95%;
    }
    .sliderPrev{
        right: -20px;
    }
    .sliderNext{
        left: -20px;
    }
}

.citiTxt{
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.citiesCont{
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.citiesContTitle{
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
  color: #4c535a;
}

.citiname{
  font-size: 32px;
  color: var(--primary-color);
  font-weight: bold;
}

.seeTour{
  width: 175px;
  height: 50px;
  border: none;
  background-color: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: 'shabnam';
  border-radius: 7px;
}

.citiImagCont{
  width: 80%;
  height: calc(100% - 20px);
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(7, 1fr);
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  margin-top: 20px;
}

.citiImgSingle1 { 
  grid-area: 1 / 1 / 4 / 4;
  border-radius: 15px;
  position: relative;
}
.citiImgSingle2 { 
  grid-area: 1 / 4 / 4 / 7;
  border-radius: 15px;
  position: relative;
}
.citiImgSingle3 { 
  grid-area: 4 / 1 / 8 / 7;
  border-radius: 15px;
  position: relative;
}
.citiImgSingle7 { 
  grid-area: 1 / 7 / 8 / 17;
  border-radius: 15px;
  position: relative;
}

.citiSingleMain{
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.ciriSingleTxt{
  position: absolute;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 15px;
  bottom: 0;
  right: 0;
  color: #ffffff;
  background: linear-gradient(270deg,rgba(40, 114, 148, 0.75) 0%, rgba(255, 240, 209, 0) 100%);
  border-radius: 0 0 15px 15px;
}

/* ================= FOOTER (FULL) ================= */

.footer {
  width: 100%;
  background-color: #102c39;
  padding: 45px 20px 15px;
  color: #fff;
  height: fit-content;
}

.footerInner {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* general column */
.footerCol h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
}

.footerCol h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  bottom: -7px;
  right: 0;
  border-radius: 10px;
}

/* ===== Brand ===== */
.footerBrand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerLogo {
  height: 75px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: start;
  overflow: hidden;
}

.footerLogo img {
  height: 75%;
  object-fit: contain;
}

.footerTitle {
  font-size: 22px;
  font-family: "uniSan";
  color: #fff;
}

.footerDesc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
}

/* trust badges */
.footerTrust {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.footerTrust span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 10px;
  border-radius: 10px;
  width: fit-content;
}

/* ===== Links ===== */
.footerLinks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footerLinks a {
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  transition: all 200ms ease;
}

.footerLinks a:hover {
  color: #fff;
  transform: translateX(-4px);
}

/* ===== Contact ===== */
.footerContact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contactRow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

.contactRow i {
  font-size: 20px;
  color: var(--primary-color);
}

/* ===== Social ===== */
.footerSocials {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footerSocialssingle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
}

.footerSocialssingle img {
  height: 55%;
}

.footerSocialssingle:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

/* ===== Bottom ===== */
.footerBottom {
  width: 90%;
  margin: 35px auto 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.footerDev {
  color: rgba(255,255,255,0.55);
}

/* ================= Responsive ================= */

@media (max-width: 992px) {
  .footerInner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footerInner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footerCol h4::after {
    right: 50%;
    transform: translateX(50%);
  }

  .footerBrand,
  .footerLinks,
  .footerContact {
    align-items: center;
  }

  .footerTrust span {
    width: 100%;
    text-align: center;
  }

  .footerLinks a:hover {
    transform: none;
  }

  .footerSocials {
    justify-content: center;
  }

  .footerBottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


@media(max-width: 992px){
  .citiTxt{
    flex-direction: column;
    align-items: end;
    gap: 7px;
  }
  .citiesCont{
    height: 100%;
  }
  .citiesContTitle{
    width: 100%;
    justify-content: start;
  }
  .citiImagCont {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(10, 1fr);
  }
  .citiImgSingle1 { grid-area: 1 / 1 / 5 / 7; }
  .citiImgSingle3 { grid-area: 5 / 1 / 8 / 7; }
  .citiImgSingle2 { grid-area: 8 / 1 / 11 / 4; }
  .citiImgSingle7 { grid-area: 8 / 4 / 11 / 7; }
  .mainContaner{
    padding-top: 0;
  }
}