@font-face {
    font-family: Tanha;
    src: url('fonts/tanha-font-v0.9/Tanha.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tanha';
}

body {
    background-color: #111;
    color: #fff;
}

/* ------ HEADER ------ */
header {
    width: 100%;
    padding: 14px 60px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-wrapper a {
    display: inline-flex;
    align-items: center;
}

.logo-wrapper img {
    height: 60px;
    width: auto;
    display: block;
}

/* منوی دسکتاپ */
header nav {
    display: flex;
    align-items: center;
    gap: 46px;
    margin-left: 30px;
}

header nav a {
    text-decoration: none;
    font-size: 15px;
    color: #222;
    transition: 0.2s;
    font-weight: 900;
}

header nav a:hover {
    color: #ff6b4a;
}

.header-cta {
    margin-right: 12px;
    padding: 8px 18px;
    border-radius: 999px;
    border: none;
    background: #ff6b4a;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s;
}

.header-cta:hover {
    background: #ff3e1c;
}

/* دکمه منوی موبایل - پیش‌فرض مخفی در دسکتاپ */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-right: 10px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #222;
    margin: 4px 0;
    transition: 0.25s;
}

/* ------ HERO ------ */
.hero {
    width: 100%;
    height: 100vh;
    background: url("image/hero_v1011.webp") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 140px;
    text-align: center;
    position: relative;
}

/* فیلتر روشن‌تر و متمایل به سفید روی عکس */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255,255,255,0.18), rgba(0,0,0,0.35));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 16px;
    transform: translateY(-60px);
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 18px;
    font-weight: 900;
    text-shadow: 5px 4px 4px black;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 900;
    text-shadow: 2px 4px 3px black;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}

.hero-buttons a {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.25s;
}

.btn-offers {
    background: #ff6b4a;
    color: #fff;
}
.btn-offers:hover {
    background: #ff3e1c;
}

/* ویژگی‌های زیر تیتر برای حس لندینگ پیج */
.hero-features {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature-pill {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 13px;
    backdrop-filter: blur(4px);
}

/* فلش پایین صفحه (آیکون SVG) */
.scroll-down-wrapper {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
}

.scroll-down-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

.scroll-down-btn:hover {
    background: rgba(0,0,0,0.5);
    transform: translateY(2px);
}

/* انیمیشن نرم بالا–پایین برای فلش */
@keyframes arrow-bounce {
    0%   { transform: translateY(0); opacity: 0.8; }
    50%  { transform: translateY(6px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.8; }
}

#scrollDown {
    animation: arrow-bounce 1.4s ease-in-out infinite;
}
    
/* ---------- OFFERS SECTION ---------- */
.offers-section {
    background: #f8f8f8;
    color: #222;
    padding: 80px 60px;
}

.offers-header {
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: center;
}

.offers-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 900;
}

.offers-header p {
    font-size: 14px;
    color: #555;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.offer-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.offer-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.offer-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.offer-top-row h3 {
    font-size: 16px;
    font-weight: 900;
}

.offer-badge {
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgb(255 242 240);
    color: #ff3e1c;
    font-weight: 900;
}

.offer-location {
    font-size: 13px;
    color: #666;
}

.offer-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #555;
}

.offer-meta span::before {
    content: "• ";
    color: #ff6b4a;
}

.offer-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.offer-price-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offer-old-price {
    font-size: 12px;
    text-decoration: line-through;
    color: #999;
}

.offer-new-price {
    font-size: 17px;
    font-weight: 900;
    color: #1c7d3f;
}

.offer-cta {
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    background: #ff6b4a;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    font-weight: 900;
    white-space: nowrap;
    transition: 0.25s;
}

.offer-cta:hover {
    background: #ff3e1c;
    scale: 1.05;
}

/* ---------- ریسپانسیو (موبایل / تبلت) ---------- */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offers-section {
        padding: 60px 24px;
    }
}

@media (max-width: 1005px) {

    header {
        padding: 10px 16px;
    }

    .logo-wrapper img {
        height: 46px;
    }

    /* منو به صورت بازشونده */
    .menu-toggle {
        display: block;
    }

    header nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 20px;
        margin-left: 0;
        transform-origin: top;
        transform: scaleY(0);
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
    }

    header nav a {
        font-size: 14px;
    }

    .header-cta {
        align-self: stretch;
        text-align: center;
        margin-right: 0;
    }

    /* وقتی کلاس nav-open روی header است، منو باز می‌شود */
    header.nav-open nav {
        transform: scaleY(1);
        max-height: 300px;
        opacity: 1;
        pointer-events: auto;
    }

    /* انیمیشن کوچیک روی آیکون منو */
    header.nav-open .menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    header.nav-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    header.nav-open .menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* هرو در موبایل */
    .hero {
        padding-top: 120px;
        align-items: center;
    }

    .hero-content {
        transform: translateY(-20px);
        max-width: 90%;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.4;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 260px;
    }

    .hero-features {
        gap: 8px;
    }

    .hero-feature-pill {
        font-size: 12px;
        padding: 6px 12px;
    }

    .scroll-down-wrapper {
        bottom: 40px;
    }
    
    /* آفرها در موبایل */
    .offers-section {
        padding: 50px 16px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-image {
        height: 190px;
    }

}
    .hotel-stars {
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .hotel-stars .star {
        width: 16px;
        height: 16px;
        fill: #f5b400;      /* رنگ طلایی ستاره‌ها */
    }

    /* ستاره کم‌رنگ برای هتل‌های ۴ ستاره */
    .hotel-stars .star-muted {
        fill: #d0d0d0;
    }

    /* برای این که title + stars کنار هم درست چیدمان بشه */
    .offer-title-stars {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    /* ====================== SERVICES SECTION ====================== */

.services-section {
    background: #ffffff;
    padding: 80px 60px;
    color: #222;
}

.services-header {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.services-header h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.services-header p {
    font-size: 14px;
    color: #777;
}

/* گرید کارت‌های سرویس */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    justify-content: center;
}

/* کارت سرویس */
.service-card {
    width: calc(33.333% - 18px);
    background: #fff;
    border-radius: 18px;
    padding: 22px 22px 26px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}

/* آیکون */
.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: #ff6b4a10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: #ff6b4a;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* ریسپانسیو */
@media (max-width: 1024px) {
    .service-card {
        width: calc(50% - 13px);
    }
}

@media (max-width: 768px) {

    .services-section {
        padding: 60px 20px;
    }

    .service-card {
        width: 100%;
    }
}
/* ====================== ABOUT SECTION ====================== */

.about-section {
    background: #ffffff;
    padding: 80px 60px;
    color: #222;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: flex-start;
}

/* سمت متن */

.about-text h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
}

.about-body {
    font-size: 14px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 12px;
}

.about-list {
    list-style: none;
    margin-top: 10px;
}

.about-list li {
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
    position: relative;
    padding-right: 16px;
}

.about-list li::before {
    content: "•";
    position: absolute;
    right: 0;
    top: 2px;
    color: #ff6b4a;
    font-size: 16px;
}

/* سمت آمار و عددها */

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.about-stat-number {
    font-size: 20px;
    font-weight: 900;
    color: #ff6b4a;
}

.about-stat-label {
    font-size: 12px;
    color: #555;
}

.about-stat-note {
    grid-column: 1 / -1;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

/* ریسپانسیو */

@media (max-width: 992px) {
    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .about-stat-card {
        padding: 14px 14px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ====================== CITIES / COVERED DESTINATIONS ====================== */

.cities-section {
    background: #f5f5f5;
    padding: 80px 60px;
    color: #222;
}

.cities-header {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.cities-header h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.cities-header p {
    font-size: 14px;
    color: #777;
}

/* کاروسل کلی */

.cities-carousel {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* دکمه‌های قبلی/بعدی */

.cities-nav {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: #f0f0f0;
    color: #555;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
}

.cities-nav:hover {
    background: #ff6b4a;
    color: #fff;
}


.cities-track-wrapper {
    overflow: hidden;             
    width: 100%;
    background-color: #f5f5f5;
}

.cities-track {
    display: flex;
    gap: 18px;
    transition: transform 0.5s ease; 
}

.city-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.city-image {
    height: 150px;
    background-size: cover;
    background-position: center;
}

.city-body {
    padding: 12px 14px 16px;
}

.city-body h3 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 6px;
}

.city-body p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}
.cities-track {
    direction: ltr;   /* ریل کروسل LTR تا محاسبات اسلاید درست دربیاد */
}

.city-card,
.city-body {
    direction: rtl;   /* متنِ داخل کارت‌ها همچنان راست‌چین و فارسی */
    text-align: right;
}
/* ریسپانسیو */

@media (max-width: 992px) {
    .cities-section {
        padding: 70px 30px;
    }
}

@media (max-width: 768px) {
    .cities-section {
        padding: 60px 16px;
    }
}

/* ====================== CONTACT SECTION ====================== */

.contact-section {
    background: radial-gradient(circle at top left, #1f2937, #020617);
    padding: 80px 60px;
    color: #f9fafb;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2.5fr;
    gap: 40px;
    align-items: flex-start;
}

/* ستون اطلاعات تماس */

.contact-info h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 14px;
    color: #cbd5f5;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-list {
    list-style: none;
    margin-bottom: 18px;
}

.contact-list li {
    margin-bottom: 12px;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 14px;
    color: #e5e7eb;
    text-decoration: none;
    display: block;
}

.contact-value:hover {
    color: #fb923c;
}

.contact-highlight {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 13px;
    line-height: 1.8;
    color: #e5e7eb;
}

/* ستون فرم */

.contact-form-wrapper {
    display: flex;
    justify-content: center;
}

.contact-form-card {
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 20px;
    padding: 22px 22px 26px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.contact-form-card h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px;
}

.contact-form-subtitle {
    font-size: 13px;
    color: #cbd5f5;
    margin-bottom: 18px;
}

/* فرم */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-field label {
    font-size: 12px;
    color: #9ca3af;
}

.form-field input,
.form-field select,
.form-field textarea {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.8);
    padding: 8px 10px;
    font-size: 13px;
    color: #e5e7eb;
    outline: none;
    transition: 0.2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #6b7280;
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #fb923c;
    box-shadow: 0 0 0 1px rgba(251, 146, 60, 0.6);
}

/* دکمه ارسال */

.contact-submit {
    margin-top: 4px;
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    background: linear-gradient(90deg, #fb923c, #f97316);
    color: #111827;
    transition: 0.2s;
}

.contact-submit:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.contact-form-note {
    margin-top: 6px;
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.7;
}

/* ریسپانسیو */

@media (max-width: 992px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-form-card {
        padding: 18px 16px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ====================== FOOTER ====================== */

.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding-top: 60px;
    padding-bottom: 20px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 14px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img {
    width: 150px;
    height: auto;
}

.footer-desc {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.8;
    margin-top: 10px;
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    background: #1e293b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: 0.2s;
    padding: 3px;
}

.footer-socials a:hover {
    background: #fb923c;
    color: #1e293b;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #fb923c;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #94a3b8;
}

/* ریسپانسیو */

@media (max-width: 992px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-brand img {
        width: 90px;
    }
}
.footer-meta {
    margin-top: 8px;
    display: flex;
    flex-direction: column;    /* ✅ زیر هم */
    align-items: center;       /* وسط‌چین */
    gap: 6px;
    opacity: 0.9;
}

.designer-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #94a3b8;
    text-decoration: none;     /* لینک خط زیر نداشته باشه */
}

.designer-meta:hover {
    color: #fbbf24;
}

.designer-logo {
    height: 57px;
    width: auto;               /* ✅ بزرگ‌تر شد */
    object-fit: contain;
    border-radius: 6px;
    opacity: 0.95;
    transition: 0.2s;
}

.designer-meta:hover .designer-logo {
    transform: scale(1.06);
    opacity: 1;
}

.footer-meta-item {
    font-size: 11.5px;
    color: #94a3b8;
}

.footer-version {
    font-weight: 700;
}

/* ----- Snackbar / Toast ----- */
#snackbar {
    visibility: hidden;
    min-width: 260px;
    max-width: 90%;
    background: #cf4551;
    color: #fff;
    text-align: center;
    padding: 12px 18px;
    border-radius: 12px;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.4s ease, bottom 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
}

/* وقتی فعال می‌شود */
#snackbar.show {
    visibility: visible;
    opacity: 1;
    bottom: 40px;
}
