@font-face {
  font-family: 'IRANSansX';
  src: url('fonts/IRANSansX-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
} 

@font-face {
  font-family: 'IRANSansX';
  src: url('fonts/IRANSansX-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'IRANSansX';
  src: url('fonts/IRANSansX-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'IRANSansX';
  src: url('fonts/IRANSansX-Demibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'IRANSansX';
  src: url('fonts/IRANSansX-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'IRANSansX';
  src: url('fonts/IRANSansX-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

:root {
    --max-width: 1200px;
    --nav-height: 64px;
    --basi-color: #5C5C5C;
    --h1-color: #35383A;
    --h2-color: #35383A;
    --h3-color: #35383A;
    --h4-color: #35383A;
    --h1-size: 1.2rem;
    --h2-size: 1.2rem;
    --h3-size: 1.2rem;
    --h4-size: 1.2rem;
}

* {
    box-sizing: border-box; 
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    outline: none;
    text-decoration: none;
}

a {
    font: inherit;
    text-decoration: none;
    color: inherit;
}


html {
    font-family: 'IRANSansX', sans-serif;
    font-weight: 500; /* غŒط§ 300طŒ 500طŒ 600طŒ 700طŒ 900 */
    font-size: 16px;
    letter-spacing: -0.02em;
    word-spacing: -0.1em;
    color: var(--basi-color);
    background: #f0f0f0;
    user-select1: none;
}

html, body {
    height: 100%;
}


header.header {
    
}

.hero {
    position: relative;
    width: 100%;                /* کل عرض مرورگر */
    aspect-ratio: 1920 / 960;   /* نسبت 2:1 */
    background-image: url("images/header-desktop.webp");
    background-size: cover;     /* تصویر بدون کشیدگی کل هدر رو پر کنه */
    background-position: center;
}

.header-content {
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    width: 400px;
    top: 40%;
    left: 75%; /* نصف + نصف نیمه راست */
    transform: translate(-75%, -40%);
    color: white;
    font-size: 1.2vw;
}

.header-content > * + * {
    margin-bottom: 10%; /* این درصد از ارتفاع هدر حساب میشه */
}

.header-content h1 {
  font-size: 1em;
  font-weight:500;
}

.header-content h2 {
    font-size: 2em;
    font-weight: 900;
    text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff6600; /* نارنجی */
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #e65c00;
}

.nav-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-link {
  position: relative;
  font-size: 1.5em;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px dashed #ffffff;
  font-weight: 500;
}

.phone-link .icon {
  width: 24px;
  height: 24px;
  position: absolute;
  left: -28px; /* جای دلخواه */
  top: 50%;
  transform: translateY(-50%);
  fill: #ffffff;
}


.big-line {
  font-size: 1.5em; /* بزرگ‌تر کردن سطر دوم */
  font-weight: 900; /* دلخواه */
}


.outline {
    color: transparent; /* داخل متن شفاف */
    -webkit-text-stroke: 2px white; /* ضخامت و رنگ دورخط */
    font-size: 1.5em;
}


.header-content p {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}

.navbar {
    display: flex;
    position: fixed;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: 64px;
    top: 0;
    font-size: 1.2rem;
    color: #222;               /* متن تیره برای کنتراست */
    background: linear-gradient(to left, #fcdf27, #f8d71c, #f0cf0d);

    z-index: 1000;
}

.navbar > *:last-child {
    margin-right: auto;   /* آخری هل داده می‌شه سمت چپ */
}

.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* وسط‌چین عمودی */
  align-items: center;      /* وسط‌چین افقی */
  height: 100%;  
    font-size: 1em;/* ارتفاع به اندازه والد */
}

.logo .line1 {
  font-size: 1em;
  font-weight: 900;
  white-space: nowrap;
  line-height: 1.1;
  color: #000;              /* لوگو مشکی پررنگ */
}

.logo .line2 {
  font-size: 0.6em;
  width: 400;
  text-align: center;
  line-height: 1;
  color: #333;              /* ردیف دوم خاکستری تیره */
}

.nav-menu {
    height: 100%; 
}

.nav-menu ul {
    display: flex;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    height: 100%;
}

.nav-menu a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    color: #222;             /* لینک‌ها تیره */
    text-decoration: none;   /* خط زیر حذف */
    transition: background 0.2s;
    gap:5px;
}

.nav-menu a:hover {
    background: rgba(0,0,0,0.08); /* هاور کمی خاکستری روی زرد */
    color: #000;
}

.menu-toggle{
  position: relative;
  width: 28px;         /* پهناي آيکون */
  height: 20px;        /* ارتفاع آيکون */
  display: inline-block;
  border: 0;
  background: transparent;
  padding: 0;          /* از کج شدن جلوگیری می‌کنه */
  cursor: pointer;
}

.menu-toggle span{
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;    /* رنگ خطوط */
  border-radius: 2px;
  transform-origin: center;
  transition: top .25s ease, transform .25s ease, opacity .2s ease;
}

/* جای خط‌ها در حالت عادی */
.menu-toggle span:nth-child(1){ top: 0; }
.menu-toggle span:nth-child(2){ top: 9px; }
.menu-toggle span:nth-child(3){ top: 18px; }

/* حالت باز (ضربدر) — هر دو خط بالا/پایین میان وسط و می‌چرخن */
.menu-toggle.open span:nth-child(1){
  top: 9px;
  transform: rotate(45deg);
}
.menu-toggle.open span:nth-child(2){
  opacity: 0;
}
.menu-toggle.open span:nth-child(3){
  top: 9px;
  transform: rotate(-45deg);
}


.nav-phone {
    font-weight: 600;
    font-variant-numeric: lining-nums;
}

.search-form {
    display: block;
    position: relative;
    width: 95%;
    max-width: var(--max-width);
    margin: -30px auto 10px auto; /* منفی برای ورود به هدر */
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #ffffff;
    z-index: 10;
}

.search-form form {
  display: flex;
  position: relative;
  gap: 12px;
  flex-wrap: wrap;
}

.search-form > form >  input,
.search-form  > form > button {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  flex: 1;
  min-width: 120px;
}

.search-form > form > button {
  background: #ff6600; /* نارنجی */
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  flex: 0.8;
  transition: background 0.3s;
}

.search-form > form > button:hover {
  background: #e65c00;
}









.tours {
    display: flex;
    flex-direction: column;   /* اول عنوان بالا، بعد کارت‌ها */
    gap: 10px;
}

.tours h2 {
    flex: 0 0 auto;  
    font-size: 1.5rem;
    color: #2d4588;
}

.tours-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}


.tours-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
  scrollbar-width: none;       /* Firefox */
    overflow-x: auto;
  scroll-behavior: smooth; /* اسکرول نرم */
}

.tours-list::-webkit-scrollbar {
  display: none;              /* Chrome, Safari */
}


.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: #fff;
    padding:10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
}

.scroll-btn.left {
  inset-inline-start: 0; /* سمت شروع محتوا (راست در RTL) */
}

.scroll-btn.right {
  inset-inline-end: 0;   /* سمت انتهای محتوا (چپ در RTL) */
}


.tour-card {
  position: relative;
  flex: 0 0 auto;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  overflow: hidden;
  cursor: pointer;
}

.tour-card img {
  width: 100%;
  height: 150px;
  object-fit: cover; /* حفظ نسبت تصویر بدون تغییر */
  display: block;
}

.tour-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: rgba(0, 100, 200, 0.4); /* آبی شفاف‌تر به جای مشکی */
  color: #fff;
  padding: 8px 0;
  font-weight: bold;
}

.tour-details {
    padding: 20px;
    background-color: #fff;
}

.tour-details h3{
    padding: 10px;
    font-size: 1.5rem;
    text-align: center;
}

.tour-details table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* همه ستون‌ها یکسان میشن */
}

.tour-details table th,
.tour-details table td {
  border: 1px solid #bcd; /* آبی خیلی کمرنگ */
  padding: 8px;
  text-align: center;
}

.tour-details table th {
  background-color: #e6f3ff; /* آبی خیلی روشن */
  color: #003366;
}

.tour-details table th:first-child,
.tour-details table td:first-child {
  width: 50%; /* ستون اول بزرگتر از بقیه */
}




.banners {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width:100%;
    padding-top: 30px;
    padding-bottom: 30px;
    gap:20px;
}

.img-zoom {
    flex: 1;
    overflow: hidden;       /* تا تصویر از قاب بیرون نزنه */
    display: inline-block;  /* برای کنترل بهتر */
    border-radius: 12px;    /* دلخواه: گردی گوشه‌ها */
    
}

.img-zoom img {
    display: block;
    width: 100%;        /* پر کردن عرض باکس */
    height: 100%;       /* پر کردن ارتفاع باکس */
    object-fit: cover;  /* تصویر رو طوری کراپ می‌کنه که کل باکس پر بشه */
    transform: scale(1.1); /* زوم اولیه */
    transition: transform 0.4s ease; /* حرکت نرم */
}

.img-zoom:hover img {
    transform: scale(1.2);  /* زوم ۱۰ درصد */
}



.content {
    padding-top: 30px;
    padding-bottom: 30px;
}

.content h2 {
    font-size: var(--h2-size);
    color: var(--h2-color);
    margin: 15px 0;
}

.content p {
    text-align: justify;
    font-weight: 300;
    color: #121212;
}

.faq-section {
    background-color: #FFFFFF;
    padding-top: 30px;
    padding-bottom: 30px;
}

.faq-section h3 {
    margin: 10px 0;
    font-size: var(--h3-size);
    color: var(--h3-color);
}

.faq-section details {
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 2px 5px -1px rgba(0, 0, 0, .08);
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.faq-section summary {
    display: flex;
    align-items: center;     /* طھط±ط§ط² ط¹ظ…ظˆط¯غŒ ظˆط³ط· */
    justify-content1: space-between;
    width: 100%;
    color: #54595f;
    padding: 5px;
    cursor: pointer;
    list-style: none;
    gap: 0.5em;
    text-align: right;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section .icon-question {
    width: 1.1em;
    height: 1.1em;
    padding: 0.3em;
    border-radius: 50%;
    fill: #17a2b8;         /* ط§ط±ط«â€Œط¨ط±غŒ ط±ظ†ع¯ ط§ط² ظ…طھظ† */
    background-color: #e8f9fc;
    box-sizing: content-box;    /* ط¨ط§ط¹ط« ظ…غŒط´ظ‡ padding ط¨ط§ط¹ط« ط¨ط²ط±ع¯â€Œطھط± ط´ط¯ظ† ط¨ط´ظ‡ */
    vertical-align: middle;
    transition: transform 0.3s;
}

.faq-section .icon-arrowdown {
    margin-right: auto;
    fill: #b5babf;
    transition: transform 0.3s ease;
}


.faq-section details[open] {
    padding-bottom: 10px;
}

.faq-section details[open] .icon-arrowdown {
    transform: rotate(180deg);
}

.faq-section details p {
    font-weight: 300;
    margin: 20px 10px;
    text-align: justify;
}






.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    margin: 10% auto;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
}

.close {
  position: absolute;
  left: 10px; top: 10px;
  cursor: pointer;
  font-size: 18px;
}

.form-group {
    display: flex;
    position: relative;
    width: 100%;
}

.form-group:focus-within {
    box-shadow: 0 0 6px rgba(0, 174, 239, 0.5);
    border-color: #5dade2;
    border-radius: 6px;
}

.full {
    width: 100%;
}

.min {
    margin-left: 66%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bcdffb;   /* آبی خیلی روشن */
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    background-color: #f9fcff;   /* پس‌زمینه خیلی روشن آبی/سفید */
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.3s;
}

.form-group textarea {
    height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3498db;
    background-color: #ffffff;   /* موقع فوکوس سفید بشه */
    box-shadow: 0 0 6px rgba(52, 152, 219, 0.3);
}

.form-group label {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 15px;
    color: #777;
    background: #f9fcff;
    padding: 0 5px;
    pointer-events: none;
    transition: 0.2s ease all;
    border-radius: 15px;
}

/* وقتی فوکوس یا پر شد */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    right: 8px;
    font-size: 0.8rem;
    color: #3498db;
    background: #ffffff;
}










.block {
    padding-right: calc((100% - var(--max-width)) / 2);
    padding-left: calc((100% - var(--max-width)) / 2);
}


@media (max-width: 768px) {

.block {
    padding-right: 10px;
    padding-left: 10px;
}

.hero {
    height: 100%;                /* کل عرض مرورگر */
    aspect-ratio: 960 / 1920;   /* نسبت 2:1 */
    background-image: url("images/header-mobile.webp");
}

.header-content {
    width: 100%;
    top: 25%;
    left: 75%; /* نصف + نصف نیمه راست */
    transform: translate(-75%, -25%);
    font-size: 1.8vh;
}

.header-content > * + * {
    margin-bottom: 5%; /* این درصد از ارتفاع هدر حساب میشه */
}



  .search-form form {
    flex-direction: column;
  }

  .search-form input,
  .search-form button {
    width: 100%;
  }


.navbar{
    padding: 0 15px;
    background: linear-gradient(to left, #f0d73c, #e9d035, #e6cc33);
}
    
.nav-menu {
    display: none;
    position: absolute;
    flex-direction: column;
    height: auto;
    top: 100%;   /* دقیقا زیر navbar */
    right: 0;
    left: 0;
    background: #fff;
}
  
.nav-menu ul {
    flex-direction: column;
}

.nav-menu a {
    width: 100%;
    padding: 20px 10px;
 }

.menu-toggle {
    display: flex;
 }

.nav-menu.active {
    display: block;
}

.scroll-btn{
    display:none;
}

.tour-card {
    width: 150px;
}

.tour-card img {
    height: 250px;
}

}


.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em; /* ط¨ط±ط§غŒ طھط±ط§ط² ط¨ظ‡طھط± ط¨ط§ ظ…طھظ† */
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}