/* ==========================================================
   Base & Layout Settings
========================================================== */

.zht-landing-fall-1405 {
    background-color: #fcf4ef;
    color: #111827;
    direction: rtl;
    position: relative;
    overflow: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
}

.zht-landing-fall-1405 *,
.zht-lead-modal-backdrop * {
    box-sizing: border-box;
}


/* ==========================================================
   Background Leaves
========================================================== */

.zht-leaves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.zht-leaf {
    position: absolute;
    opacity: 0.8;
    filter: blur(1px);
}

.zht-leaf-1 {
    top: 5%;
    right: 10%;
    width: 80px;
    transform: rotate(25deg);
}

.zht-leaf-2 {
    top: 25%;
    left: 15%;
    width: 60px;
    transform: rotate(-15deg);
}

.zht-leaf-3 {
    top: 15%;
    right: -2%;
    width: 100px;
    transform: rotate(45deg);
    opacity: 0.5;
}

.zht-leaf-4 {
    top: 40%;
    right: 20%;
    width: 50px;
    transform: rotate(10deg);
}

.zht-leaf-5 {
    top: 50%;
    left: 5%;
    width: 90px;
    transform: rotate(-45deg);
    opacity: 0.6;
}

.zht-leaf-6 {
    top: 60%;
    right: 5%;
    width: 70px;
    transform: rotate(-20deg);
}


/* ==========================================================
   Header Section
========================================================== */

.zht-header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 5%;
}

.zht-header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zht-logo img {
    height: 45px;
    width: auto;
    display: block;
}

.zht-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.zht-nav a {
    text-decoration: none;
    color: #111827;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.zht-nav a:hover {
    color: #f15a24;
}

.zht-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #fed7aa;
    border-radius: 10px;
    background: #fff7ed;
    color: #ea580c;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.zht-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.zht-btn {
    background-color: #f15a24;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease, transform 0.2s;
}

.zht-btn:hover {
    background-color: #d94a1b;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .zht-header {
        padding: 14px 18px;
    }
    .zht-logo img {
        height: 38px;
    }
    .zht-menu-toggle {
        display: inline-flex;
    }
    .zht-menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .zht-menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }
    .zht-menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .zht-nav {
        position: absolute;
        top: calc(100% - 4px);
        right: 18px;
        left: 18px;
        z-index: 20;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }
    .zht-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .zht-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 8px;
        background: #ffffff;
        border: 1px solid #fed7aa;
        border-radius: 14px;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
    }
    .zht-nav li+li {
        border-top: 1px solid #fff0e7;
    }
    .zht-nav a {
        display: block;
        padding: 12px 14px;
        border-radius: 9px;
        font-size: 14px;
    }
    .zht-nav a:hover,
    .zht-nav a:focus {
        background: #fff7ed;
    }
    .zht-header-action .zht-btn {
        padding: 9px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
}

@media (max-width: 390px) {
    .zht-header {
        padding-right: 12px;
        padding-left: 12px;
    }
    .zht-logo img {
        height: 34px;
    }
    .zht-header-controls {
        gap: 6px;
    }
    .zht-header-action .zht-btn {
        padding: 9px 10px;
        font-size: 11px;
    }
    .zht-header-action .zht-btn svg {
        display: none;
    }
}


/* ==========================================================
   Hero Section
========================================================== */

.zht-hero {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px 10px;
}

.zht-hero h1 {
    font-size: 42px;
    font-weight: 900;
    color: #0b1120;
    margin-bottom: 20px;
    line-height: 1.4;
}

.zht-highlight {
    color: #f15a24;
}

.zht-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111827;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 30px;
    width: 100%;
    justify-content: center;
}

.zht-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #f33c00;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

.zht-hero-cta:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(249, 115, 22, 0.35);
}


/* ==========================================================
   Tic-Tac-Toe Game Section (Optimized & Cleaned)
========================================================== */

.zht-game-section {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 70px 20px;
    background: transparent !important;
    box-shadow: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.zht-game-content-wrapper {
    position: relative;
    z-index: 5;
    max-width: 580px;
    width: 100%;
    text-align: center;
}


/* Side Decorative Images (Left & Right WebP) */

.zht-game-section {
    position: relative;
    overflow: hidden;
}

.zht-game-side-deco {
    position: absolute;
    top: 58%;
    /* برای تنظیم ارتفاع دقیق نسبت به کارت دوز */
    transform: translateY(-50%);
    width: 240px;
    /* اندازه تصویر */
    max-width: 25vw;
    height: auto;
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
}


/* تصویر سمت راست (O) -> از وسط ۵۰٪ می‌آید و به اندازه عرض کارت به سمت راست هل داده می‌شود */

.zht-deco-right {
    left: calc(50% + 89px);
    right: auto;
    top: 67%;
}


/* تصویر سمت چپ (X) -> از وسط ۵۰٪ می‌آید و به سمت چپ هل داده می‌شود */

.zht-deco-left {
    right: calc(50% + 85px);
    left: auto;
    top: 66%;
}


/* واکنش‌گرایی: در تبلت و موبایل برای اینکه روی تخته نیفتد */

@media (max-width: 1024px) {
    .zht-deco-right {
        left: calc(50% + 180px);
        width: 180px;
    }
    .zht-deco-left {
        right: calc(50% + 180px);
        width: 180px;
    }
}

@media (max-width: 768px) {
    .zht-game-side-deco {
        display: none;
        /* یا مخفی در موبایل تا صفحه شلوغ نشود */
    }
}

.zht-game-title {
    font-size: 40px;
    font-weight: 900;
    color: #0b1120;
    margin: 0 0 15px;
}

.zht-game-desc {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
}

.zht-game-subdesc {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 25px;
}

.zht-game-status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.zht-status-badge {
    background-color: #fff4ed;
    color: #f15a24;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #fed7aa;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.zht-timer-badge {
    background-color: #fee2e2;
    color: #dc2626;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #fca5a5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.zht-timer-badge.urgent {
    animation: zht-pulse 0.8s infinite alternate;
    background-color: #ef4444;
    color: #ffffff;
}

.zht-mark-x {
    color: #e63946;
    animation: zht-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.zht-mark-o {
    color: #fff;
    animation: zht-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zht-pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}

.zht-game-container {
    position: relative;
    display: inline-block;
    min-height: 300px;
}

.zht-board {
    display: grid;
    grid-template-columns: repeat(3, 95px);
    grid-template-rows: repeat(3, 95px);
    gap: 12px;
    background-color: #fff;
    margin: 0 auto;
    padding: 23px;
    border-radius: 25px;
}

button.zht-cell:hover,
button.zht-cell.taken:focus {
    background-color: #ffd07d;
}

.zht-cell {
    background-color: #fcc575;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    border: unset;
}

.zht-cell:hover:not(.taken) {
    background-color: #ffd07d;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 25px rgba(254, 189, 89, 0.35), 0 6px 10px rgba(0, 0, 0, 0.08);
}

.zht-cell.taken {
    cursor: not-allowed;
}

.zht-cell.winner-cell {
    background-color: #dcfce7;
    border: 2px solid #22c55e;
}

@keyframes zht-pop {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.zht-cell svg {
    width: 55px;
    height: 55px;
}

.zht-hint {
    position: absolute;
    right: 110%;
    top: 40%;
    transform: translateY(-50%);
    text-align: right;
    width: 140px;
    transition: opacity 0.3s ease;
}

.zht-hint-text {
    color: #e63946;
    font-weight: 800;
    font-size: 16px;
    transform: rotate(-10deg);
    margin-bottom: 5px;
    display: block;
}

.zht-hint svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #e63946;
    stroke-width: 2;
    stroke-linecap: round;
}


/* Game Side Deco Responsive Breakpoints */

@media (max-width: 1300px) {
    .zht-game-side-deco {
        width: 21px;
    }
    .zht-deco-right {
        left: calc(50% + 107px);
        right: auto;
        top: 67%;
    }
    .zht-deco-left {
        right: calc(50% + 89px);
        left: auto;
        top: 68%;
    }
}

@media (max-width: 1050px) {
    .zht-deco-right {
        left: calc(50% + 105px);
        right: auto;
        top: 67%;
    }
    .zht-deco-left {
        right: calc(50% + 101px);
        left: auto;
        top: 69%;
    }
}

@media (max-width: 768px) {
    .zht-game-side-deco {
        display: none !important;
    }
    .zht-game-section {
        padding: 40px 15px;
    }
}


/* ==========================================================
   Game Overlay Card
========================================================== */

.zht-game-overlay-card {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    animation: zht-fadeIn 0.3s ease;
}

@keyframes zht-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zht-game-overlay-card.active {
    display: flex;
}

.zht-overlay-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #0b1120;
}

.zht-overlay-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.zht-retry-btn {
    background-color: #f15a24;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.zht-retry-btn:hover {
    background-color: #d94a1b;
    transform: scale(1.04);
}


/* ==========================================================
   Lead Modal
========================================================== */

.zht-lead-modal-backdrop {
    display: none;
    position: fixed !important;
    /* این مهم‌ترین بخش است */
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    /* تمام عرض صفحه */
    height: 100vh !important;
    /* تمام ارتفاع صفحه */
    background-color: rgba(15, 23, 42, 0.75) !important;
    backdrop-filter: blur(6px);
    z-index: 999999 !important;
    /* عدد بسیار بزرگ */
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.zht-lead-modal-backdrop.active {
    display: flex;
}

.zht-lead-modal {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 460px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: zht-scaleUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    direction: rtl;
    position: relative;
}

.zht-modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    color: #64748b;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 20;
}

.zht-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

@keyframes zht-scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.zht-modal-badge {
    display: inline-block;
    background-color: #fef3c7;
    color: #b45309;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

.zht-modal-title {
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 10px;
}

.zht-modal-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 25px;
    line-height: 1.5;
}

.zht-form-group {
    margin-bottom: 16px;
    text-align: right;
}

.zht-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.zht-form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    background-color: #f8fafc;
}

.zht-form-input:focus {
    border-color: #f15a24;
    background-color: #ffffff;
}

.zht-submit-lead-btn {
    width: 100%;
    padding: 14px;
    background-color: #f15a24;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.zht-submit-lead-btn:hover {
    background-color: #d94a1b;
}

.zht-submit-lead-btn:disabled {
    background-color: #cbd5e1;
    cursor: not-allowed;
}

.zht-form-error {
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    display: none;
}

.zht-coupon-box {
    display: none;
    background-color: #fff7ed;
    border: 2px dashed #f97316;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    margin-top: 10px;
}

.zht-coupon-code {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ea580c;
    margin: 12px 0 16px;
    user-select: all;
    direction: ltr;
    display: inline-block;
}

.zht-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ea580c;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.zht-copy-btn:hover {
    background-color: #c2410c;
}


/* ==========================================================
   Learning Paths Section (مسیرهای یادگیری)
========================================================== */

.zht-paths-section {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 20px 16px;
    text-align: center;
    direction: rtl;
    box-sizing: border-box;
}

.zht-paths-subtitle {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin: 0 auto 40px;
    max-width: 500px;
}

.zht-paths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.zht-path-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px -5px rgba(234, 88, 12, 0.05), 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(254, 215, 170, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
}

.zht-path-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px -8px rgba(234, 88, 12, 0.12), 0 6px 16px rgba(0, 0, 0, 0.05);
    border-color: #fdba74;
}

.zht-path-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ea580c;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 4px 10px rgba(234, 88, 12, 0.08);
    padding: 11px;
}

.zht-path-icon {
    width: 32px;
    height: 32px;
}

.zht-path-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 14px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zht-path-card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.zht-path-card-desc strong {
    color: #334155;
    font-weight: 600;
}


/* دکمه کپسولی پیل (Pill Button) */

.zht-path-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ffedd5;
    color: #c2410c;
    text-decoration: none;
    padding: 8px 16px 8px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
    width: fit-content;
}

.zht-btn-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ea580c;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.zht-path-btn:hover {
    background-color: #fed7aa;
    color: #9a3412;
}

.zht-path-btn:hover .zht-btn-arrow {
    transform: translateX(-3px);
    background-color: #c2410c;
}


/* ==========================================================
   Popular Courses Section (Clean Two-Box Pricing & Carousel)
========================================================== */

.zht-popular-section {
    position: relative;
    max-width: 1280px;
    margin: 80px auto 60px;
    padding: 0 20px;
    text-align: center;
    z-index: 10;
}

.zht-section-header {
    margin-bottom: 35px;
}

.zht-sub-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ea580c;
    position: relative;
    padding: 0 16px;
    margin-bottom: 12px;
}

.zht-sub-badge::before,
.zht-sub-badge::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1.5px;
    background-color: #fdba74;
}

.zht-sub-badge::before {
    right: -16px;
}

.zht-sub-badge::after {
    left: -16px;
}

.zht-section-title {
    font-size: 38px;
    font-weight: 900;
    color: #1e293b;
    margin: 0 0 10px 0;
    text-align: center;
}

.zht-orange {
    color: #ea580c;
}

.zht-section-tagline {
    font-size: 17px;
    font-weight: 800;
    color: #475569;
    margin: 0 0 6px 0;
}

.zht-section-subtext {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin: 0;
}


/* اسلایدر و کاروسل */

.zht-popular-carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 25px;
    padding: 0 45px;
    box-sizing: border-box;
}

.zht-p-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 6px 30px;
    cursor: grab;
}

.zht-p-track-wrapper:active {
    cursor: grabbing;
}

.zht-p-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}


/* کارت دوره */

.zht-p-card {
    flex: 0 0 calc((100% - 72px) / 4);
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04), 0 4px 10px rgba(234, 88, 12, 0.03);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
    justify-content: space-between;
}

.zht-p-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -8px rgba(234, 88, 12, 0.12), 0 6px 16px rgba(0, 0, 0, 0.04);
}


/* آیکون بالای کارت */

.zht-p-icon-box {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff7ed 0%, #ffedd5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 16px;
}

.zht-p-card-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    pointer-events: none;
}

.zht-p-title {
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 22px 0;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* دو باکس مجزای قیمت */

.zht-p-prices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
}

.zht-p-price-card {
    background: #fcf8f5;
    border: 1px solid #ffebdc;
    border-radius: 14px;
    padding: 8px 4px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-height: 72px;
}

.zht-p-price-label {
    font-size: 11.5px;
    color: #8c532d;
    font-weight: 700;
}

.zht-p-price-values {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.zht-p-price-old {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
}

.zht-p-prices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin-bottom: 22px;
}

.zht-p-price-val {
    font-size: 12px;
    font-weight: 900;
    color: #0f172a;
}

.zht-p-price-card {
    background: #fcf8f5;
    border: 1px solid #ffebdc;
    border-radius: 12px;
    padding: 5px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.zht-p-price-label {
    font-size: 13px;
    color: #3f1700;
    font-weight: 700;
}


/* دکمه نارنجی مشاهده دوره */

.zht-p-btn {
    width: 100%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 13.5px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.28);
    transition: all 0.25s ease;
}

.zht-p-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(234, 88, 12, 0.38);
    color: #ffffff;
}


/* دکمه‌های فلش چپ و راست */

.zht-p-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1.5px solid #ea580c;
    color: #ea580c;
    display-items: center;
    justify-content: center;
    gap: 12px;
}

.zht-p-price-label {
    font-size: 13px;
    color: #3f1700;
    font-weight: 700;
}


/* دکمه نارنجی مشاهده دوره */

.zht-p-btn {
    width: 100%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 13.5px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.28);
    transition: all 0.25s ease;
}

.zht-p-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(234, 88, 12, 0.38);
    color: #ffffff;
}


/* دکمه‌های فلش چپ و راست */


/* ==========================================================
   دکمه‌های فلش چپ و راست (Carousel Navigation)
   ========================================================== */

.zht-p-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1.5px solid #ea580c;
    color: #ea580c;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.12);
    cursor: pointer;
    transition: all 0.2s ease;
}

.zht-p-prev {
    right: -22px;
}

.zht-p-next {
    left: -22px;
}

.zht-p-nav:hover {
    background-color: #ea580c;
    color: #ffffff;
    border-color: #ea580c;
    transform: translateY(-50%) scale(1.08);
}

@media (max-width: 820px) {
    .zht-p-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .zht-p-prev {
        right: -10px;
    }
    .zht-p-next {
        left: -10px;
    }
}

@media (max-width: 768px) {
    .zht-hero h1 {
        font-size: 28px;
    }
    .zht-board {
        grid-template-columns: repeat(3, 80px);
        grid-template-rows: repeat(3, 80px);
        gap: 8px;
    }
    .zht-cell svg {
        width: 44px;
        height: 44px;
    }
    .zht-lead-modal {
        padding: 25px 20px;
    }
}

@media (max-width: 600px) {
    .zht-paths-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .zht-paths-subtitle {
        margin-bottom: 25px;
    }
    .zht-path-card-title {
        min-height: auto;
    }
}

@media (max-width: 580px) {
    .zht-popular-carousel {
        padding: 0 35px;
    }
    .zht-p-card {
        flex: 0 0 100%;
    }
    .zht-p-nav {
        top: 42%;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border: 1.5px solid #ea580c;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 15;
    }
    .zht-p-prev {
        right: 0px;
        left: auto;
    }
    .zht-p-next {
        left: 0px;
        right: auto;
    }
    .zht-p-nav svg {
        width: 18px;
        height: 18px;
        stroke-width: 2.5;
    }
    .zht-p-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 18px;
        padding-bottom: 5px;
        width: 100%;
    }
    .zht-p-dot {
        width: 9px;
        height: 9px;
        background: #cbd5e1;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .zht-p-dot.active {
        background: #f15a24;
        width: 22px;
        border-radius: 10px;
    }
    .zht-section-title {
        font-size: 26px;
    }
}


/* ============================================================
   Popular Packs (type 2) — لیست عمودی
   ============================================================ */

.zht-packs-section {
    position: relative;
    max-width: 1280px;
    margin: 80px auto 60px;
    padding: 0 20px;
    text-align: center;
    z-index: 10;
}

.zht-packs-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 1140px;
    margin: 40px auto 0;
}

.zht-pack-row {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    border-radius: 16px;
    padding: 2px 13px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zht-pack-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.zht-pack-icon {
    flex-shrink: 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zht-pack-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.zht-pack-title {
    flex: 1;
    font-size: 17px;
    font-weight: 800;
    color: #2b2f38;
    margin: 0;
    line-height: 1.8;
    text-align: right;
}

.zht-pack-prices {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}


/* قیمت‌های قبل/بعد تخفیف در ردیف پک‌ها */

.zht-pack-prices .zht-p-price-card {
    min-width: 132px;
    padding: 9px 10px;
    gap: 5px;
}

.zht-pack-prices .zht-p-price-values {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    line-height: 1.35;
}

.zht-pack-prices .zht-p-price-old {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
}

.zht-pack-prices .zht-p-price-val {
    font-size: 13px;
    font-weight: 900;
    color: #0f172a;
}

.zht-pack-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6216, #f15a24);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.zht-pack-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #fbedd8;
}


/* ریسپانسیو پکیج‌ها */

@media (max-width: 900px) {
    .zht-pack-row {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 34px 20px;
    }
    .zht-pack-title {
        flex-basis: 100%;
        order: -1;
    }
    .zht-pack-prices {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .zht-pack-row .zht-pack-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
}


/* ==========================================================================
   بخش چرا کندو؟ (Why Cando Section)
   ========================================================================== */

.zht-why-cando-section {
    max-width: 1160px;
    margin: 80px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.zht-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 320px;
    grid-template-rows: auto auto;
    gap: 22px;
}

.zht-why-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 12px 32px rgba(255, 122, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zht-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(255, 122, 0, 0.12), 0 6px 16px rgba(0, 0, 0, 0.04);
}

.zht-why-card-tall {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    text-align: right;
}

.zht-why-card-tall .zht-why-card-img {
    margin: 10px auto 25px auto;
    text-align: center;
}

.zht-why-card-tall .zht-why-card-img img {
    max-width: 170px;
    height: auto;
    object-fit: contain;
}

.zht-why-card-wide {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.zht-why-card-wide .zht-why-card-content {
    max-width: 60%;
}

.zht-why-card-wide .zht-why-card-img img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.zht-why-card-regular {
    flex-direction: column;
    justify-content: space-between;
}

.zht-why-card-regular .zht-why-card-img.zht-img-compact {
    text-align: left;
    margin-top: 15px;
}

.zht-why-card-regular .zht-why-card-img img {
    max-width: 90px;
    height: auto;
    object-fit: contain;
}

.zht-why-card-title {
    font-size: 19px;
    font-weight: 800;
    color: #1e2229;
    margin: 0 0 10px 0;
}

.zht-why-card-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin: 0 0 16px 0;
}

.zht-why-arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff3ec;
    color: #ff5722;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    transition: all 0.25s ease;
    text-decoration: none;
    border: 1px solid #ffe0d0;
}

.zht-why-card:hover .zht-why-arrow-btn {
    background: #ff5722;
    color: #ffffff;
    transform: translateX(-4px);
}

@media (max-width: 991px) {
    .zht-why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .zht-why-card-tall {
        grid-column: 1 / 3;
        grid-row: auto;
        flex-direction: row;
        align-items: center;
    }
    .zht-why-card-tall .zht-why-card-content {
        max-width: 60%;
    }
    .zht-why-card-wide {
        grid-column: 1 / 3;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .zht-why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .zht-why-card,
    .zht-why-card-tall,
    .zht-why-card-wide,
    .zht-why-card-regular {
        grid-column: 1 / -1;
        grid-row: auto;
        flex-direction: column;
        align-items: stretch;
        text-align: right;
        padding: 24px 20px;
    }
    .zht-why-card .zht-why-card-img {
        order: -1;
        width: 100%;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0 16px 0;
    }
    .zht-why-card .zht-why-card-img img,
    .zht-why-card-tall .zht-why-card-img img,
    .zht-why-card-wide .zht-why-card-img img,
    .zht-why-card-regular .zht-why-card-img img {
        max-width: 130px;
        max-height: 130px;
        width: auto;
        height: auto;
        object-fit: contain;
        margin: 0;
    }
    .zht-why-card .zht-why-card-content,
    .zht-why-card-tall .zht-why-card-content,
    .zht-why-card-wide .zht-why-card-content {
        order: 1;
        max-width: 100%;
        width: 100%;
    }
    .zht-why-card .zht-why-card-desc {
        margin-bottom: 0;
    }
}

.zht-rec-card {
    position: relative;
}

.zht-card-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #ffe3d3;
    color: #ff6216;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.zht-single-price-grid {
    grid-template-columns: 1fr !important;
}

.zht-single-price {
    text-align: center;
    background: #fff6f0;
    border-radius: 10px;
    padding: 8px 12px;
}

.zht-single-price .zht-p-price-label {
    display: block;
    font-size: 12px;
    color: #555;
    margin-bottom: 2px;
}

.zht-single-price .zht-p-price-values {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.zht-single-price .zht-p-price-old {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
}

.zht-single-price .zht-p-price-val {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
}


/* ==========================================================
   استایل‌های سکشن سوالات متداول (FAQ Accordion)
   ========================================================== */

.zht-faq-section {
    padding: 70px 0;
    position: relative;
}

.zht-faq-list {
    max-width: 860px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zht-faq-item {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zht-faq-item:hover {
    box-shadow: 0 8px 30px rgba(234, 88, 12, 0.08);
    border-color: rgba(251, 146, 60, 0.4);
}


/* هدر هر آکاردئون (دکمه) */

.zht-faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: right;
    direction: rtl;
    gap: 16px;
    font-family: inherit;
}

button.zht-faq-header:hover,
button.zht-faq-header:active,
button.zht-faq-header:focus {
    background-color: #f66e14;
}

.zht-faq-header span:hover {
    color: #fff;
}

.zht-faq-header span:active {
    color: #fff;
}

.zht-faq-question {
    font-size: 19px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.zht-faq-item:hover .zht-faq-question {
    color: #ea580c;
}


/* دایره آیکون + */

.zht-faq-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #fff7ed;
    color: #ea580c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.zht-faq-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.35s ease;
}


/* بدنه و پاسخ */

.zht-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: #fafafa;
}

.zht-faq-content {
    padding: 0 28px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    border-top: 1px dashed #f1f5f9;
    margin-top: 4px;
    padding-top: 16px;
}


/* وضعیت اکتیو (باز شده) */

.zht-faq-item.active {
    border-color: #ea580c;
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.12);
}

.zht-faq-item.active .zht-faq-question {
    color: #ea580c;
}

.zht-faq-item.active .zht-faq-icon {
    background: #ea580c;
    color: #ffffff;
    transform: rotate(45deg);
    /* تبدیل + به × موقع باز شدن */
}

.zht-faq-item.active .zht-faq-body {
    max-height: 300px;
    /* حداکثر ارتفاع باز شدن */
    transition: max-height 0.4s cubic-bezier(0.5, 0, 0.1, 1);
}


/* ریسپانسو موبایل */

@media (max-width: 580px) {
    .zht-faq-header {
        padding: 16px 20px;
    }
    .zht-faq-question {
        font-size: 16px;
        text-wrap: balance;
    }
    .zht-faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    .zht-faq-icon svg {
        width: 16px;
        height: 16px;
    }
    .zht-faq-content {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}


/* ==========================================================
   استایل‌های سکشن هیرو مدرن (Hero Redesign)
========================================================== */

.zht-hero-section {
    position: relative;
    padding: 24px 22px 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    margin: 60px auto 40px;
}

.zht-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 48px;
}

.zht-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.zht-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.zht-hero-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.35;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.zht-color-dark {
    color: #0f172a;
}

.zht-color-accent {
    color: #ea580c;
}

.zht-hero-subtitle {
    font-size: 21px;
    font-weight: 600;
    color: #334155;
    margin: 0 0 34px 0;
    line-height: 1.6;
}

.zht-hero-percent {
    color: #ea580c;
    font-weight: 800;
}

.zht-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    font-family: inherit;
    font-size: 19px;
    font-weight: 800;
    padding: 16px 42px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zht-hero-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 36px rgba(234, 88, 12, 0.45);
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.zht-btn-arrow {
    width: 22px;
    height: 22px;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.zht-hero-btn:hover .zht-btn-arrow {
    transform: rotate(180deg) translateX(4px);
}

.zht-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.zht-hero-img-wrapper {
    position: relative;
    max-width: 440px;
    width: 100%;
    animation: zhtFloat 5s ease-in-out infinite;
}

.zht-hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(234, 88, 12, 0.22));
}

@keyframes zhtFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}


/* نشانگر ماوس و اسکرول پایین */

.zht-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 50px;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.zht-scroll-indicator:hover {
    opacity: 1;
    transform: translateY(2px);
}

.zht-mouse-icon {
    width: 22px;
    height: 36px;
    border: 2px solid #64748b;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.zht-mouse-wheel {
    width: 4px;
    height: 8px;
    background: #ea580c;
    border-radius: 2px;
    animation: zhtScrollWheel 1.8s infinite;
}

@keyframes zhtScrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

.zht-scroll-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.zht-scroll-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

@media (max-width: 992px) {
    .zht-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .zht-hero-content {
        align-items: center;
        text-align: center;
    }
    .zht-hero-title {
        font-size: 36px;
    }
    .zht-hero-img-wrapper {
        max-width: 320px;
    }
}

@media (max-width: 580px) {
    .zht-hero-section {
        padding: 40px 0 20px;
    }
    .zht-hero-title {
        font-size: 28px;
    }
    .zht-hero-subtitle {
        font-size: 17px;
        margin-bottom: 26px;
    }
    .zht-hero-btn {
        width: 100%;
        font-size: 17px;
        padding: 14px 28px;
    }
    .zht-hero-img-wrapper {
        max-width: 260px;
    }
    .zht-scroll-indicator {
        margin-top: 30px;
    }
}


/* ==========================================================================
   Consultation Section Styles (فرم دریافت مشاوره - تم پاییزی لندینگ)
   ========================================================================== */


/* کانتینر اصلی سکشن */

.zht-consultation-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 20px 80px;
    background: transparent;
    overflow: hidden;
    min-height: 380px;
    margin-top: 50px;
    z-index: 11;
}


/* کارت دورچین wrapper در صورت نیاز به سایه یا تنظیم تراز */

.zht-card-border-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}


/* شکل پس‌زمینه کج و چرخان پاییزی */

.zht-consultation-bg-shape {
    position: absolute;
    width: 1254.35px;
    height: 195.91px;
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    opacity: 0.6;
    border-radius: 10px;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-2.44deg);
    top: 127px;
}


/* کارت اصلی فرم (سفید شفاف با حاشیه و سایه پاییزی) */

.zht-consultation-form-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 40px 45px;
    box-sizing: border-box;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 15px 35px -5px rgba(234, 88, 12, 0.08), 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(254, 215, 170, 0.6);
}


/* هدر و متون فرم */

.zht-form-header {
    text-align: right;
    margin-bottom: 25px;
    position: relative;
}

.zht-consultation-icon {
    position: absolute;
    top: -10px;
    right: -24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* آیکون وکتور خطی بالای تایتل */

.zht-consultation-icon svg path {
    stroke: #f15a24 !important;
}

.zht-form-title {
    color: #0f172a;
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 10px 0;
    letter-spacing: -0.3px;
}

.zht-form-description {
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
}


/* بدنه فرم */

.zht-form-body {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    margin-top: 15px;
}


/* ==========================================================================
   استایل‌های Gravity Forms متناسب با هویت بصری لندینگ (فرم 92)
   ========================================================================== */

div#gform_wrapper_92 {
    width: 100%;
}

.zht-form-body .gform_heading,
.zht-form-body label.gfield_label.gform-field-label {
    display: none !important;
}

.zht-form-body .gform-body.gform_body {
    width: 100%;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    border-radius: 16px;
    padding: 16px 20px;
}


/* اینپوت‌های متنی، شماره و ایمیل داخل فرم */

.zht-form-body input[type="text"],
.zht-form-body input[type="tel"],
.zht-form-body input[type="email"] {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    height: 48px;
    font-family: inherit;
    background-color: #ffffff;
    color: #1e293b;
    font-size: 15px !important;
    font-weight: 600;
    padding: 0 16px;
    box-sizing: border-box;
    text-align: right;
    width: 100%;
    outline: none;
    transition: all 0.25s ease;
}

.zht-form-body input[type="text"]:focus,
.zht-form-body input[type="tel"]:focus,
.zht-form-body input[type="email"]:focus {
    border-color: #f15a24;
    box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.12);
}

.zht-form-body input::placeholder {
    color: #94a3b8;
    font-size: 14px;
}


/* دکمه نارنجی ارسال با گرادیان لندینگ */

.zht-form-body input#gform_submit_button_92,
.zht-form-submit-btn {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    border: none !important;
    color: #ffffff !important;
    cursor: pointer;
    height: 48px;
    font-size: 15.5px;
    font-weight: 800;
    border-radius: 10px;
    padding: 0 28px;
    box-shadow: 0 6px 18px rgba(234, 88, 12, 0.28);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.zht-form-body input#gform_submit_button_92:hover,
.zht-form-submit-btn:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(234, 88, 12, 0.38);
}


/* ==========================================================================
   ریسپانسیو فرم مشاوره
   ========================================================================== */

@media (max-width: 1240px) {
    .zht-consultation-form-card {
        padding: 32px 24px;
    }
    .zht-form-body {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    section.zht-consultation-section {
        padding: 40px 15px 60px !important;
        overflow: visible !important;
    }
    .zht-consultation-bg-shape {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        transform: rotate(-1deg);
    }
    .zht-consultation-form-card {
        padding: 24px 18px !important;
        border-radius: 18px;
    }
    .zht-consultation-icon {
        top: -8px !important;
        right: -10px !important;
    }
    .zht-form-title {
        font-size: 20px !important;
    }
    .zht-form-description {
        font-size: 13.5px !important;
    }
    .zht-form-body .gform-body.gform_body {
        padding: 14px 12px !important;
    }
    .zht-form-body input#gform_submit_button_92 {
        height: 44px !important;
        width: 100% !important;
    }
    .zht-form-body .gform-footer.gform_footer.top_label {
        display: none !important;
    }
}

button#gform_submit_button_92 {
    background-color: #f66e14;
}

.ginput_container_text input {
    border: solid 1px #f9ddcb !important;
}