@charset "utf-8";

/* جلوگیری از overflow و کشیده شدن به چپ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* CSS Variables for Theme — تم یکپارچه (Royal Blue, Soft Navy, Charcoal) در تمام صفحات */
:root {
    --royal-blue: #3B5998;
    --soft-navy: #2E3459;
    --charcoal: #333333;
    --bg-primary: #f5f5f5;
    --bg-secondary: #e8e8e8;
    --bg-card: #ffffff;
    --text-primary: #333333;
    --text-secondary: #555555;
    --text-muted: #777777;
    --border-color: rgba(51, 51, 51, 0.15);
    --header-bg: #3B5998;
    --header-text: #ffffff;
    --shadow-color: rgba(51, 51, 51, 0.12);
    --accent: #3B5998;
    --accent-soft: rgba(59, 89, 152, 0.12);
    --accent-border: rgba(59, 89, 152, 0.35);
    --button-primary: #2E3459;
    --dropdown-bg: #ffffff;
    --dropdown-text: #333333;
}

body.light-theme {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-card: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.08);
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: IRANYekan, IRANYekanWeb, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.ltr {
    direction: ltr;
}

body.rtl {
    direction: rtl;
}

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

a:hover {
    opacity: 0.85;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    min-width: 0;
}

/* ساختار یکپارچه: همه گریدها و باکس‌ها وسط‌چین و در موبایل دو ستونه */
.services-grid,
.tour-cards-grid,
.photography-benefits,
.benefits-list,
.benefits-grid,
.basic-services-grid,
.advantages-grid,
.gallery-grid,
.cards-grid,
.additional-services,
.backlinks-list,
.forum-topics-list,
.price-items-grid,
.faq-container,
.documents-list-box,
.sections-list-container,
.services-list {
    margin-inline: auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    min-height: 60px;
    background: var(--header-bg);
    color: var(--header-text);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* فاصلهٔ محتوا از بالای صفحه تا زیر هدر ثابت نرود */
main {
    padding-top: 72px;
}

.site-header .logo-main,
.site-header .logo-sub,
.site-header .main-nav a {
    color: inherit;
}

.site-header .logo-sub {
    opacity: 0.9;
}

.site-header .main-nav li.active > a {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
}

.site-header .home-link {
    color: inherit;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}
.site-header .home-link:hover {
    color: inherit;
    background: rgba(255, 255, 255, 0.2);
}

.site-header .menu-toggle span {
    background: currentColor;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0;
    gap: 1.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-mark {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    overflow: hidden;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.logo-mark img {
    width: 100%;
    height: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.main-nav li.active > a {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
}

.main-nav li.has-sub {
    position: relative;
}

.submenu-arrow {
    font-size: 0.7rem;
    margin-inline-start: 0.3rem;
    transition: transform 0.3s ease;
}

.main-nav li.submenu-open .submenu-arrow {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    margin-top: 0.5rem;
    background: var(--dropdown-bg);
    color: var(--dropdown-text);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 0.5rem 0;
    min-width: 180px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 8px 25px var(--shadow-color);
}

body.rtl .submenu {
    right: 0;
}

body.ltr .submenu {
    left: 0;
}

.main-nav li.submenu-open .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: inherit;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 0;
}

.submenu li.active > a,
.submenu a:hover {
    background: var(--accent-soft);
    color: var(--accent);
    padding-inline-start: 1.5rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.flag {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    overflow: hidden;
}

.flag-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.flag-emoji {
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag.active {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.home-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.home-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.home-link-icon {
    display: inline-block;
    font-size: 1.25rem;
    line-height: 1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 0.25rem;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.hero {
    padding: 3.5rem 0 3rem;
    background: var(--bg-primary);
}

.hero-main-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0 0 2.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.hero-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-main-card,
.hero-docs-card {
    text-align: right;
}

body.ltr .hero-main-card,
body.ltr .hero-docs-card {
    text-align: left;
}

.hero-dual-citizenship-card {
    margin-top: 2rem;
    text-align: right;
    background: var(--accent-soft);
    border: 1px solid var(--border-color);
    border-radius: 1.2rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

body.ltr .hero-dual-citizenship-card {
    text-align: left;
}

.hero-dual-citizenship-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-color);
    border-color: var(--accent-border);
}

.hero-dual-citizenship-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.2rem;
    color: var(--text-primary);
}

.dual-citizenship-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.dual-citizenship-content > p {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
}

.example-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 1.2rem 1.5rem;
    margin-top: 1rem;
}

.example-box strong {
    display: block;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.example-box p {
    margin: 0;
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.hero-bullets li {
    margin-bottom: 0.4rem;
}

.hero-info-cards {
    display: grid;
    gap: 1.2rem;
    margin: 0 0 2.5rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.2rem;
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    text-align: right;
    transition: all 0.3s ease;
}

body.ltr .info-card {
    text-align: left;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--shadow-color);
    border-color: var(--accent-border);
}

.info-card.highlight {
    background: var(--accent-soft);
    border-color: var(--accent-border);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.info-card p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.hero-cta {
    margin-top: 2rem;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--accent);
    margin: 0 0 1.2rem;
    font-weight: 500;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow:
        0 16px 35px rgba(37, 211, 102, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 40px rgba(37, 211, 102, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.whatsapp-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 1.6rem 1.4rem;
    box-shadow:
        0 20px 40px var(--shadow-color),
        0 0 0 1px var(--border-color);
}

.hero-card h2 {
    margin: 0 0 0.7rem;
    font-size: 1.1rem;
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-card li {
    font-size: 0.9rem;
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-card li::before {
    content: "•";
    color: var(--accent);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    background: var(--button-primary);
    color: #fff;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-1px);
    opacity: 0.95;
    box-shadow: 0 6px 20px var(--shadow-color);
}

.btn-text {
    display: inline-flex;
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: 0.8rem;
}

.section {
    padding: 2.2rem 0;
}

.section-alt {
    background: var(--bg-secondary);
    padding: 2.5rem 0;
}

.section-title {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
    margin-top: 2rem;
    color: var(--accent);
    font-weight: 700;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.3rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.2rem;
    padding: 1.4rem 1.3rem;
    box-shadow: 0 2px 8px var(--shadow-color);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-color);
    border-color: var(--accent-border);
}

.service-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 1.4rem 1.3rem;
}

.card-icon {
    margin-bottom: 0.5rem;
}

.card-icon span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: var(--accent-soft);
    color: var(--accent);
}

.card h3 {
    margin: 0.9rem 0 0.4rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.service-card .card-content h3 {
    margin-top: 0;
}

.card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.artmakers-partnership {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px var(--shadow-color);
}

.partnership-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.partnership-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.partnership-text {
    flex: 1;
}

.partnership-text h3 {
    margin: 0 0 0.8rem;
    font-size: 1.3rem;
    color: var(--accent);
}

.partnership-text p {
    margin: 0 0 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.discount-code {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.4rem;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 999px;
    font-weight: 600;
}

.code-label {
    color: var(--accent);
    font-size: 0.95rem;
}

.code-value {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: monospace;
}

.copy-btn {
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 999px;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--accent);
    transition: all 0.2s ease;
    line-height: 1;
}

.copy-btn:hover {
    background: var(--accent-border);
    transform: scale(1.05);
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps li {
    padding: 0.6rem 0;
}

.steps strong {
    display: block;
    font-size: 0.95rem;
}

.steps span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.gallery-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0.8rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 1rem;
}

.gallery-item figcaption {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Documents Section */
.documents-section {
    max-width: 800px;
    margin: 0 auto;
}

.documents-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.doc-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.documents-card h3 {
    margin: 0 0 1.5rem;
    font-size: 1.3rem;
    color: var(--accent);
}

.documents-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: right;
}

body.ltr .documents-list {
    text-align: left;
}

.documents-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.check-icon {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.documents-note {
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 0.8rem;
    padding: 1rem 1.2rem;
    margin: 0;
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
}

.info-section-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-color);
}

.info-section-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.2rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    border-color: var(--accent-border);
    box-shadow: 0 8px 24px var(--shadow-color);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.benefit-item h4 {
    margin: 0 0 0.6rem;
    font-size: 1.1rem;
    color: var(--accent);
}

.benefit-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Three Columns Layout */
.three-columns-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.info-column {
    background: radial-gradient(circle at top, var(--shadow-color), var(--bg-primary));
    border: 1px solid var(--border-color);
    border-radius: 1.2rem;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.info-column:hover {
    transform: translateY(-4px);
    border-color: var(--accent-border);
    box-shadow: 0 8px 24px var(--shadow-color);
}

.column-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.column-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.column-header h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.column-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Basic Services in Column */
.basic-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.basic-service-item {
    background: var(--accent-soft);
    border: 1px solid var(--border-color);
    border-radius: 0.9rem;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.basic-service-item:hover {
    transform: translateY(-2px);
    border-color: var(--accent-border);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.basic-service-item .service-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    line-height: 1;
}

.basic-service-item h3 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.4;
}

/* Advantage Items Compact */
.advantage-item-compact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--accent-soft);
    border: 1px solid var(--border-color);
    border-radius: 0.9rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.advantage-item-compact:hover {
    transform: translateX(3px);
    border-color: var(--accent-border);
    box-shadow: 0 4px 16px var(--shadow-color);
}

body.ltr .advantage-item-compact:hover {
    transform: translateX(-3px);
}

.advantage-icon-small {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}

.advantage-item-compact h3 {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 700;
}

.advantage-item-compact p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Process Steps Compact */
.process-intro-compact {
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent);
    margin: 0 0 1rem;
    font-weight: 500;
    padding: 0.8rem;
    background: var(--accent-soft);
    border-radius: 0.6rem;
}

.process-steps-compact {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.process-step-compact {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: var(--accent-soft);
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 1rem;
    transition: all 0.3s ease;
    text-align: right;
}

body.ltr .process-step-compact {
    text-align: left;
}

.process-step-compact:hover {
    transform: translateX(3px);
    border-color: var(--accent-border);
    box-shadow: 0 4px 16px var(--shadow-color);
}

body.ltr .process-step-compact:hover {
    transform: translateX(-3px);
}

.step-number-small {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 3px 12px var(--accent-border);
}

.step-content-compact {
    flex: 1;
}

.step-content-compact h4 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.5;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.advantage-card h3 {
    margin: 0 0 0.8rem;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
}

.advantage-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Process Steps */
.process-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent);
    margin: 0 0 2rem;
    font-weight: 500;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--accent-soft);
    border: 1px solid var(--border-color);
    border-radius: 1.2rem;
    padding: 1.8rem;
    transition: all 0.3s ease;
    text-align: right;
}

body.ltr .process-step {
    text-align: left;
}

.process-step:hover {
    transform: translateX(5px);
    border-color: var(--accent-border);
    box-shadow: 0 4px 16px var(--shadow-color);
}

body.ltr .process-step:hover {
    transform: translateX(-5px);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--accent-border);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.6;
}

.process-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 1rem;
}

.process-note p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem 1.8rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-border);
    box-shadow: 0 4px 16px var(--shadow-color);
}

.faq-item h3 {
    margin: 0 0 0.8rem;
    font-size: 1.1rem;
    color: var(--accent);
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-header {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    cursor: pointer;
    color: inherit;
    font: inherit;
    text-align: inherit;
}

.faq-header span:first-child {
    text-align: right;
}

body.ltr .faq-header span:first-child {
    text-align: left;
}

.faq-toggle-icon {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--accent);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
}

.faq-body.open {
    margin-top: 0.6rem;
}

.faq-more-link {
    margin-top: 1rem;
    text-align: center;
}

/* Mana Services */
.mana-services {
    max-width: 900px;
    margin: 0 auto;
}

.mana-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent);
    margin: 0 0 2rem;
    font-weight: 500;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.service-badge {
    background: var(--accent-soft);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.service-badge:hover {
    background: var(--accent-soft);
    border-color: var(--accent-border);
    color: var(--accent);
    transform: translateY(-2px);
}

/* Contact CTA */
.contact-cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
}

.contact-cta h2 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    color: var(--accent);
}

.contact-cta p {
    margin: 0 0 1.8rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    text-align: center;
    color: var(--accent);
    font-weight: 700;
}

.page-content {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: justify;
    color: var(--text-primary);
}

.page-content p {
    color: var(--text-primary);
}

body.rtl .page-content {
    text-align: right;
}

body.ltr .page-content {
    text-align: left;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: center;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 0.8rem;
    border: 1px solid var(--border-color);
}

.narrow {
    max-width: 720px;
}

/* Tour Page Styles */
.tour-hero-image {
    margin: 2rem 0;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.tour-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.tour-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tour-card {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.tour-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.tour-card h3 {
    margin: 0 0 0.8rem;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
}

.tour-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.tour-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.tour-card-link:hover {
    color: inherit;
}

/* صفحه جزئیات جاذبه تور */
.breadcrumb-nav {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.breadcrumb-nav a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.tour-attraction-detail .page-title {
    margin-bottom: 1.5rem;
}

.tour-detail-icon {
    margin-inline-end: 0.5rem;
}

.tour-attraction-image {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px var(--shadow-color);
}

.tour-attraction-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 450px;
    object-fit: cover;
}

.tour-attraction-content {
    margin-bottom: 2rem;
}

.tour-attraction-back {
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    background: var(--border-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: var(--accent-soft);
    border-color: var(--accent-border);
    color: var(--accent);
    transform: translateY(-1px);
}

.additional-services {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.12));
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: right;
}

body.ltr .service-item {
    text-align: left;
}

.service-item:hover {
    transform: translateX(5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

body.ltr .service-item:hover {
    transform: translateX(-5px);
}

.service-item .service-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.service-item h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 700;
}

.service-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin-top: 1.1rem;
    font-size: 0.9rem;
}

.contact-info li {
    margin-bottom: 0.35rem;
}

/* Contact page special section */
.contact-map {
    margin: 2rem 0 0;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

.contact-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 60px;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
}

.contact-btn-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    font-style: normal;
}

.contact-no-info {
    text-align: center;
    padding: 2rem;
    background: var(--accent-soft);
    border-radius: 1rem;
    border: 1px dashed var(--border-color);
}

.contact-no-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-btn-text {
    flex: 1;
    text-align: center;
    margin: 0 1rem;
}

.contact-btn-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.contact-btn-phone {
    background: var(--button-primary);
}

.contact-btn-instagram {
    background: var(--button-primary);
}

.contact-btn-email {
    background: var(--accent);
}

.contact-btn-messenger {
    background: var(--accent);
}

.contact-main {
    margin-top: 2rem;
    gap: 2rem;
}

.contact-info-section,
.contact-form-section {
    flex: 1;
}

.section-title-small {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--accent);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--accent-soft);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.2rem;
    transition: all 0.3s ease;
}

.contact-info li:hover {
    transform: translateX(5px);
    border-color: var(--accent-border);
    box-shadow: 0 8px 20px var(--shadow-color);
}

body.ltr .contact-info li:hover {
    transform: translateX(-5px);
}

.contact-info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}

.contact-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-info-content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

.contact-info-content span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.btn-full {
    width: 100%;
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.45rem 0.6rem;
    border-radius: 0.7rem;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    border-radius: 0.8rem;
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.alert.success {
    background: rgba(22, 163, 74, 0.18);
    border: 1px solid rgba(22, 163, 74, 0.6);
}

/* تالار پرسش و پاسخ — لیست مسطح بدون دسته */
.forum-topics-list {
    margin-top: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.forum-topic-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.forum-topic-card:hover {
    border-color: var(--accent-border);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.forum-topic-link {
    display: block;
    padding: 1.1rem 1.2rem;
    text-decoration: none;
    color: inherit;
}

.forum-topic-title {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
}

.forum-topic-excerpt {
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.forum-topic-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.forum-topic-date {
    font-weight: 500;
}

.forum-categories {
    margin-top: 1.3rem;
    display: grid;
    gap: 1rem;
}

.forum-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.1rem;
    padding: 1.1rem 1rem;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.forum-card h2 {
    margin: 0 0 0.35rem;
}

.forum-card p {
    margin: 0 0 0.7rem;
    font-size: 0.86rem;
    color: var(--accent);
}

.forum-topics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.forum-topics li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.forum-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.forum-posts {
    margin-top: 1.3rem;
}

.forum-post {
    background: var(--bg-secondary);
    border-radius: 0.9rem;
    padding: 0.8rem 0.9rem;
    margin-bottom: 0.6rem;
    border: 1px solid var(--border-color);
}

.forum-post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
    font-size: 0.82rem;
}

.forum-post-meta {
    color: var(--text-muted);
}

.muted {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* دکمهٔ شناور واتساپ — فقط آیکون، بدون پس‌زمینه و سایه */
.whatsapp-float {
    position: fixed;
    left: max(1rem, env(safe-area-inset-left));
    bottom: max(1.5rem, env(safe-area-inset-bottom));
    z-index: 9999;
    display: inline-block;
    padding: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-float-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-float:active {
    transform: scale(0.98);
}

.whatsapp-float-icon {
    display: block;
    width: 120px;
    height: 120px;
    object-fit: contain;
}

@media (max-width: 480px) {
    .whatsapp-float-icon {
        width: 96px;
        height: 96px;
    }
}

body.rtl .whatsapp-float {
    left: auto;
    right: max(1rem, env(safe-area-inset-right));
}

.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.3rem 0 1.4rem;
    margin-top: 1.5rem;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.footer-inner p {
    margin: 0.4rem 0 0;
    color: var(--text-muted);
}

.backlinks-list {
    margin-top: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.backlink-item {
    padding: 1rem 1.2rem;
    border-radius: 0.8rem;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.backlink-title {
    margin: 0 0 0.3rem;
    font-size: 0.95rem;
}

.backlink-title a {
    color: var(--accent);
    text-decoration: none;
}

.backlink-title a:hover {
    text-decoration: underline;
}

.backlink-desc {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-credit {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0.2rem 0 0.4rem;
    opacity: 0.7;
}

.footer-credit a {
    color: inherit;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--accent);
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .info-card {
        padding: 1.2rem 1.4rem;
    }

    .info-card p {
        font-size: 0.98rem;
    }

    .hero-two-col {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid,
    .tour-cards-grid,
    .photography-benefits,
    .benefits-list,
    .benefits-grid,
    .basic-services-grid,
    .advantages-grid,
    .gallery-grid,
    .cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem;
        max-width: 100%;
    }

    body.page-home .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .additional-services {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem;
        max-width: 100%;
    }

    /* forum و backlinks: دو ستونه در موبایل */
    .forum-topics-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .backlinks-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    /* services-list (badges) دو ستونه در موبایل */
    .services-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        justify-content: stretch;
    }
}

@media (max-width: 720px) {
    .container {
        padding: 0 1.75rem;
    }

    main {
        padding-top: 60px;
    }

    .site-header {
        min-height: 60px;
    }

    .header-inner {
        align-items: center;
    }

    .logo-mark {
        width: 64px;
        height: 64px;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .main-nav {
        position: absolute;
        inset-inline: 0;
        top: 55px;
        background: var(--header-bg);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.2s ease-out;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 0.7rem 1.2rem 1rem;
    }

    .main-nav a {
        display: block;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 0.5rem 0 0 1.5rem;
        background: var(--accent-soft);
        border: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    body.rtl .submenu {
        margin-right: 1.5rem;
        margin-left: 0;
    }

    .main-nav li.submenu-open .submenu {
        max-height: 300px;
    }

    .submenu a {
        padding: 0.5rem 1rem;
    }

    .submenu a:hover {
        padding-inline-start: 1rem;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        padding-top: 1.8rem;
        padding-bottom: 2rem;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 1.8rem;
    }

    .hero-info-cards {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .info-card {
        padding: 1rem 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    body.ltr .info-card {
        text-align: center;
    }

    .info-icon {
        font-size: 1.6rem;
    }

    .info-card p {
        font-size: 0.95rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .btn-whatsapp {
        padding: 0.75rem 1.6rem;
        font-size: 0.95rem;
    }
    /* فاصله و تنفس بیشتر برای کارت‌ها روی موبایل */
    .hero-two-col {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.2rem;
    }

    .hero-main-card,
    .hero-docs-card {
        padding: 1.4rem 1.6rem;
        text-align: center;
        max-width: 340px;
        margin-inline: auto;
    }

    .hero-dual-citizenship-card {
        padding: 1.5rem 1.4rem;
        text-align: center;
        margin-top: 1.5rem;
    }

    .hero-dual-citizenship-card h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .dual-citizenship-content > p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .example-box {
        padding: 1rem 1.2rem;
        margin-top: 0.8rem;
    }

    .example-box strong {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .example-box p {
        font-size: 0.95rem;
    }

    .documents-card {
        padding: 1.6rem 1.8rem;
        text-align: center;
        max-width: 340px;
        margin-inline: auto;
    }

    .artmakers-partnership {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .partnership-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .partnership-icon {
        font-size: 2.5rem;
    }

    .partnership-text h3 {
        font-size: 1.1rem;
    }

    .partnership-text p {
        font-size: 0.95rem;
    }

    .discount-code {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.9rem 1.2rem;
    }

    .card-image {
        height: 180px;
    }

    .doc-icon {
        font-size: 2.5rem;
    }

    .documents-card h3 {
        font-size: 1.1rem;
    }

    .documents-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 100%;
    }

    .benefit-item {
        padding: 0.5rem 0.6rem;
        text-align: center;
        max-width: none;
        margin-inline: 0;
    }

    .benefit-icon {
        font-size: 1.3rem;
    }

    .benefit-item h4 {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .benefit-item p {
        font-size: 0.75rem;
    }

    .three-columns-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }

    .info-column {
        padding: 1.5rem 1.2rem;
        max-width: 100%;
    }

    .column-header h2 {
        font-size: 1.1rem;
    }

    .column-icon {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .basic-service-item {
        padding: 1rem;
    }

    .basic-service-item .service-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .basic-service-item h3 {
        font-size: 0.85rem;
    }

    .advantage-item-compact {
        padding: 0.9rem;
        gap: 0.8rem;
    }

    .advantage-icon-small {
        font-size: 1.5rem;
    }

    .advantage-item-compact h3 {
        font-size: 0.9rem;
    }

    .advantage-item-compact p {
        font-size: 0.8rem;
    }

    .process-intro-compact {
        font-size: 0.85rem;
        padding: 0.7rem;
        margin-bottom: 0.8rem;
    }

    .process-step-compact {
        padding: 0.9rem;
        gap: 0.8rem;
    }

    .step-number-small {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .step-content-compact h4 {
        font-size: 0.85rem;
    }

    .basic-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 100%;
    }

    .basic-service-item {
        padding: 0.5rem 0.6rem;
        max-width: none;
        margin-inline: 0;
    }

    .basic-service-item .service-icon {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }

    .basic-service-item h3 {
        font-size: 0.7rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 100%;
    }

    .advantage-card {
        padding: 0.5rem 0.6rem;
        max-width: none;
        margin-inline: 0;
    }

    .advantage-icon {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .advantage-card h3 {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .advantage-card p {
        font-size: 0.7rem;
    }

    .process-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .process-steps {
        gap: 1.2rem;
    }

    .process-step {
        padding: 1.4rem 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    body.ltr .process-step {
        text-align: center;
    }

    .process-step:hover {
        transform: translateY(-2px);
    }

    body.ltr .process-step:hover {
        transform: translateY(-2px);
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin: 0 auto;
    }

    .step-content h3 {
        font-size: 1rem;
        text-align: center;
    }

    .process-note {
        padding: 1.2rem;
        margin-top: 2rem;
    }

    .process-note p {
        font-size: 1rem;
    }

    .faq-item {
        padding: 0.6rem 0.75rem;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .faq-item h3 {
        font-size: 0.85rem;
    }

    .faq-item p {
        font-size: 0.8rem;
    }

    .mana-intro {
        font-size: 1rem;
        text-align: center;
    }

    .services-list {
        gap: 0.6rem;
    }

    .service-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .contact-cta {
        padding: 1.8rem 1.5rem;
        text-align: center;
        max-width: 340px;
        margin-inline: auto;
    }

    .contact-cta h2 {
        font-size: 1.3rem;
    }

    .contact-cta p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-whatsapp {
        width: 100%;
    }

    /* فوتر موبایل */
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
    }

    .footer-inner p {
        margin-top: 0.3rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 0.8rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-credit {
        font-size: 0.6rem;
        padding: 0.4rem 0.5rem;
        line-height: 1.5;
    }

    .contact-quick-actions {
        max-width: 100%;
        gap: 0.9rem;
        margin: 1.5rem 0;
    }

    .contact-btn {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
        min-height: 55px;
    }

    .contact-btn-icon {
        font-size: 1.5rem;
        width: 28px;
        height: 28px;
    }

    .contact-btn-text {
        margin: 0 0.8rem;
        font-size: 0.9rem;
    }

    .contact-map {
        margin: 1.5rem 0 0;
        border-radius: 1rem;
    }

    .contact-map iframe {
        height: 300px;
    }

    /* دو ستونهٔ عمومی در موبایل تک‌ستونه شود (مثلاً صفحه تماس) */
    .two-col {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }

    .section-title-small {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-info li {
        padding: 1rem;
        gap: 0.9rem;
    }

    .contact-info-icon {
        font-size: 1.5rem;
    }

    .contact-info-content strong {
        font-size: 0.85rem;
    }

    .contact-info-content span {
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 100%;
    }

    .tour-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 100%;
    }

    .tour-card {
        padding: 0.6rem 0.5rem;
    }

    .tour-card-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .tour-card h3 {
        font-size: 0.75rem;
    }

    .tour-card p {
        font-size: 0.7rem;
    }

    .additional-services {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 100%;
    }

    .service-item {
        padding: 0.5rem 0.6rem;
        gap: 0.4rem;
        flex-direction: column;
        text-align: center;
    }

    body.ltr .service-item {
        text-align: center;
    }

    .service-item .service-icon {
        font-size: 1.3rem;
    }

    .service-item h3 {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }

    .service-item p {
        font-size: 0.7rem;
    }

    .photography-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 100%;
    }

    .service-item-card {
        padding: 0.5rem 0.6rem;
        min-height: 80px;
    }

    .service-item-card .service-icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .service-item-card h3 {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .documents-list-box {
        padding: 1.5rem 1.2rem;
    }

    .documents-ordered-list {
        padding-inline-start: 1.2rem;
    }

    .documents-ordered-list li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .benefits-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 100%;
    }

    .benefit-item-box {
        padding: 0.5rem 0.6rem;
        gap: 0.4rem;
        flex-direction: column;
        text-align: center;
        max-width: none;
        margin-inline: 0;
    }

    body.ltr .benefit-item-box {
        text-align: center;
    }

    .benefit-item-box:hover {
        transform: translateY(-2px);
    }

    body.ltr .benefit-item-box:hover {
        transform: translateY(-2px);
    }

    .benefit-item-box .benefit-icon {
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .benefit-item-box .benefit-content h3 {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .benefit-item-box .benefit-content p {
        font-size: 0.7rem;
    }

    .benefit-card {
        padding: 0.5rem 0.6rem;
        max-width: none;
        margin-inline: 0;
    }

    .benefit-icon-large {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .benefit-card h3 {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .benefit-card p {
        font-size: 0.7rem;
    }

    .section-list-header {
        padding: 1.2rem 1.4rem;
        font-size: 1rem;
    }

    .section-list-content {
        padding: 0 1.4rem 1.2rem;
    }

    .section-list-content ul,
    .section-list-content ol {
        padding-inline-start: 1.2rem;
    }

    .section-list-content li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }

    .sections-list-container {
        padding: 0 0.5rem;
    }

    .pricing-button-container {
        margin-bottom: 2rem;
    }

    .btn-pricing-large {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .pricing-button-content {
        text-align: center;
    }

    .pricing-arrow {
        display: none;
    }

    .pricing-calculator {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding: 0;
    }

    .pricing-items-section {
        gap: 1.5rem;
        min-width: 0;
    }

    /* فاصله از دکمه واتساپ در موبایل (فقط صفحه قیمت) */
    body.page-pricing .section-alt .container {
        padding-bottom: 7rem;
    }

    .price-category {
        margin-bottom: 1rem;
    }

    .category-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .price-items-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.45rem;
    }

    .price-item-card {
        min-width: 0;
    }

    .price-item-checkbox {
        padding: 0.5rem 0.7rem;
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        min-height: 40px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }

    .price-item-checkbox input[type="checkbox"] {
        display: block;
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
        margin: 0;
        margin-top: 0.05rem;
        flex-shrink: 0;
        accent-color: var(--accent);
        cursor: pointer;
    }

    .price-item-checkbox .price-item-content {
        flex: 1;
        min-width: 0;
    }

    .price-item-content {
        padding: 0;
    }

    .price-item-header {
        flex-wrap: wrap;
        gap: 0.25rem;
        margin-bottom: 0.15rem;
    }

    .price-item-header h3 {
        font-size: 0.85rem;
        min-width: 0;
        word-wrap: break-word;
    }

    .price-value {
        font-size: 0.95rem;
    }

    .price-item-description {
        font-size: 0.75rem;
    }

    .pricing-summary {
        position: static;
    }

    .summary-card {
        padding: 0.7rem 0.8rem;
    }

    .summary-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .selected-items-list {
        min-height: 60px;
        max-height: 160px;
        padding: 0.4rem;
    }

    .selected-items-ul li {
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: 0.6rem 0;
    }

    .item-name {
        font-size: 0.9rem;
        min-width: 0;
        overflow-wrap: break-word;
    }

    .total-price {
        padding: 0.5rem 0.65rem;
        margin-bottom: 0.5rem;
    }

    .total-amount {
        font-size: 1.1rem;
    }

    .btn-reset {
        padding: 0.45rem 0.65rem;
        font-size: 0.8rem;
    }
}

/* Pricing Button Large */
.pricing-button-container {
    margin: 2rem 0 3rem;
    text-align: center;
}

.btn-pricing-large {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: var(--button-primary);
    border-radius: 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 35px var(--accent-border);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

.btn-pricing-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px var(--shadow-color);
    border-color: rgba(255, 255, 255, 0.4);
}

.pricing-icon {
    font-size: 3.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.pricing-button-content {
    flex: 1;
    text-align: right;
}

body.ltr .pricing-button-content {
    text-align: left;
}

.pricing-button-title {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.pricing-button-subtitle {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.pricing-arrow {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-pricing-large:hover .pricing-arrow {
    transform: translateX(5px);
}

body.rtl .btn-pricing-large:hover .pricing-arrow {
    transform: translateX(-5px);
}

/* Pricing Calculator Page */
.pricing-calculator {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

/* از ۹۰۰px به پایین: لیست بالا، خلاصه پایین + چک‌باکس قابل کلیک */
@media (max-width: 900px) {
    .pricing-calculator {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .pricing-summary {
        order: 2;
        position: static;
    }
    .pricing-items-section {
        order: 1;
    }
    .price-item-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 0.5rem 0.7rem;
        min-height: 40px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    .price-item-checkbox input[type="checkbox"] {
        display: block !important;
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
        margin: 0;
        margin-top: 0.05rem;
        flex-shrink: 0;
        accent-color: var(--accent);
        cursor: pointer;
    }
    .price-item-checkbox .price-item-content {
        flex: 1;
        min-width: 0;
    }
    .selected-items-list {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .no-selection {
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .price-items-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    body.page-pricing .section-alt .container {
        padding-bottom: 6rem;
    }
}

.pricing-items-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    min-width: 0;
}

.price-category {
    margin-bottom: 1rem;
    min-width: 0;
}

.category-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--accent-border);
}

.price-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.price-item-card {
    background: radial-gradient(circle at top, var(--shadow-color), var(--bg-primary));
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.price-item-card:hover {
    border-color: var(--accent-border);
    box-shadow: 0 2px 8px var(--shadow-color);
    transform: translateY(-1px);
}

.price-item-checkbox {
    display: block;
    cursor: pointer;
    padding: 0.6rem 0.75rem;
    margin: 0;
}

.price-item-checkbox input[type="checkbox"] {
    display: none;
}

.price-item-checkbox input[type="checkbox"]:checked + .price-item-content {
    background: var(--accent-soft);
    border-color: var(--accent-border);
}

.price-item-content {
    border: 1px solid transparent;
    border-radius: 0.5rem;
    padding: 0.5rem 0.6rem;
    transition: all 0.3s ease;
}

.price-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.price-item-header h3 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    flex: 1;
    line-height: 1.3;
}

.price-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
}

.price-item-description {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pricing-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
    min-width: 0;
}

/* RTL: جهت گرید برای نمایش صحیح */
body.rtl .pricing-calculator {
    direction: rtl;
}

.summary-card {
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 0.6rem;
    padding: 0.9rem;
    box-shadow: 0 4px 16px var(--accent-soft);
}

.summary-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 0.6rem;
    text-align: center;
}

.selected-items-list {
    min-height: 80px;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 0.6rem;
    padding: 0.5rem;
    background: var(--bg-card);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.no-selection {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    padding: 0.8rem 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.selected-items-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.selected-items-ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--accent-soft);
}

.selected-items-ul li:last-child {
    border-bottom: none;
}

.item-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex: 1;
}

.item-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-inline-start: 0.5rem;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.75rem;
    background: var(--accent-soft);
    border-radius: 0.5rem;
    margin-bottom: 0.6rem;
    border: 1px solid var(--accent-border);
}

.total-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.total-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
}

.btn-reset {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    background: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: var(--border-color);
    border-color: var(--accent-border);
    transform: translateY(-2px);
}

.no-prices-message {
    text-align: center;
    padding: 3rem;
    background: var(--accent-soft);
    border-radius: 1rem;
    border: 1px dashed var(--border-color);
}

.no-prices-message p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Marriage Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-inline: auto;
    justify-items: center;
}

.service-item-card {
    background: var(--accent-soft);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.service-item-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-border);
    box-shadow: 0 4px 16px var(--shadow-color);
}

.service-item-card .service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    line-height: 1;
    display: block;
}

.service-item-card h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.documents-list-box {
    background: var(--accent-soft);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 700px;
    margin-inline: auto;
    margin-top: 2rem;
}

.documents-ordered-list {
    margin: 0;
    padding-inline-start: 1.5rem;
    color: var(--text-secondary);
    line-height: 2;
}

.documents-ordered-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-inline: auto;
}

.benefit-item-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--accent-soft);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: right;
}

body.ltr .benefit-item-box {
    text-align: left;
}

.benefit-item-box:hover {
    transform: translateX(5px);
    border-color: var(--accent-border);
    box-shadow: 0 8px 20px var(--shadow-color);
}

body.ltr .benefit-item-box:hover {
    transform: translateX(-5px);
}

.benefit-item-box .benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.benefit-item-box .benefit-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 700;
}

.benefit-item-box .benefit-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.photography-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-inline: auto;
    justify-items: center;
}

.benefit-card {
    background: radial-gradient(circle at top, var(--shadow-color), var(--bg-primary));
    border: 1px solid var(--border-color);
    border-radius: 1.2rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-border);
    box-shadow: 0 8px 24px var(--shadow-color);
}

.benefit-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.benefit-card h3 {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
}

.benefit-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Sections List Styles */
.sections-list-container {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}

.section-list-item {
    background: radial-gradient(circle at top, var(--shadow-color), var(--bg-primary));
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-list-item:hover {
    border-color: var(--accent-border);
    box-shadow: 0 4px 16px var(--shadow-color);
}

.section-list-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
    transition: all 0.2s ease;
}

body.ltr .section-list-header {
    text-align: left;
}

.section-list-header:hover {
    background: rgba(236, 72, 153, 0.1);
}

.section-toggle-icon {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-inline-start: 1rem;
}

.section-list-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.section-list-body.open {
    max-height: 1000px;
}

.section-list-content {
    padding: 0 1.8rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-list-content ul,
.section-list-content ol {
    margin: 0;
    padding-inline-start: 1.5rem;
}

.section-list-content li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.faq-summary-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-summary-item {
    padding: 1rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 0.6rem;
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.faq-summary-item strong {
    display: block;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faq-summary-item p {
    margin: 0;
    color: var(--text-secondary);
}

/* Light Theme Overrides */
body.light-theme .card {
    background: var(--bg-card);
    box-shadow: 0 4px 12px var(--shadow-color);
}

body.light-theme .card:hover {
    box-shadow: 0 8px 20px var(--shadow-color);
}

body.light-theme .faq-item,
body.light-theme .section-list-item {
    background: var(--bg-card);
    border-color: var(--border-color);
}

body.light-theme .faq-item:hover,
body.light-theme .section-list-item:hover {
    border-color: var(--accent-border);
    box-shadow: 0 4px 12px var(--shadow-color);
}

body.light-theme .section-list-header,
body.light-theme .faq-header {
    color: var(--text-primary);
}

body.light-theme .section-list-content,
body.light-theme .faq-body {
    color: var(--text-secondary);
}

body.light-theme .flag {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

body.light-theme .hero {
    background:
        radial-gradient(circle at top left, var(--accent-soft), transparent 60%),
        radial-gradient(circle at top right, var(--accent-soft), transparent 55%);
}

body.light-theme .section {
    background: var(--bg-primary);
}

body.light-theme .section-alt {
    background: var(--bg-secondary);
}

body.light-theme .site-footer {
    background: var(--bg-secondary);
    border-top-color: var(--border-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

.mana-services-detailed-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mana-services-detailed-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--accent-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.mana-services-detailed-list li:last-child {
    border-bottom: none;
}

.mana-services-detailed-list li:hover {
    color: var(--accent);
    padding-inline-start: 0.5rem;
    transition: all 0.2s ease;
}

/* Light Theme Overrides */
body.light-theme .card {
    background: var(--bg-card);
    box-shadow: 0 4px 12px var(--shadow-color);
}

body.light-theme .card:hover {
    box-shadow: 0 8px 20px var(--shadow-color);
}

body.light-theme .faq-item,
body.light-theme .section-list-item {
    background: var(--bg-card);
    border-color: var(--border-color);
}

body.light-theme .faq-item:hover,
body.light-theme .section-list-item:hover {
    border-color: var(--accent-border);
    box-shadow: 0 4px 12px var(--shadow-color);
}

body.light-theme .section-list-header,
body.light-theme .faq-header {
    color: var(--text-primary);
}

body.light-theme .section-list-content,
body.light-theme .faq-body {
    color: var(--text-secondary);
}

body.light-theme .flag {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

body.light-theme .hero {
    background:
        radial-gradient(circle at top left, var(--accent-soft), transparent 60%),
        radial-gradient(circle at top right, var(--accent-soft), transparent 55%);
}

body.light-theme .section {
    background: var(--bg-primary);
}

body.light-theme .section-alt {
    background: var(--bg-secondary);
}

body.light-theme .mana-services-detailed-list li {
    color: var(--text-secondary);
    border-bottom-color: var(--border-color);
}

body.light-theme .submenu a {
    color: var(--text-secondary);
}

body.light-theme .menu-toggle span {
    background: var(--text-primary);
}

/* ========== صفحه اول: چیدمان خاص (تم از :root در تمام صفحات) ========== */
/* ---------- هیرو صفحه اول: تصویر تمام‌عرض + overlay، متن سفید، دکمه Soft Navy ---------- */
body.page-home .hero-banner {
    position: relative;
    padding: 0;
    min-height: min(70vh, 520px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

body.page-home .hero-banner-image-bg .hero-banner-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

body.page-home .hero-banner-image-bg .hero-banner-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

body.page-home .hero-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(46, 52, 89, 0.85) 0%, rgba(46, 52, 89, 0.5) 45%, transparent 70%);
    pointer-events: none;
}

body.page-home.rtl .hero-banner-overlay {
    background: linear-gradient(to left, rgba(46, 52, 89, 0.85) 0%, rgba(46, 52, 89, 0.5) 45%, transparent 70%);
}

body.page-home .hero-banner-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
    overflow-x: hidden;
}

body.page-home .hero-banner,
body.page-home .hero-features,
body.page-home .hero-tagline,
body.page-home main {
    width: 100%;
    max-width: 100%;
}

body.page-home .hero-banner-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.5rem;
    color: #fff;
    letter-spacing: -0.02em;
}

body.page-home .hero-banner-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

body.page-home .btn-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    background: var(--soft-navy);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    letter-spacing: 0.02em;
}

body.page-home .btn-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15);
    background: var(--royal-blue);
    color: #fff;
}

/* ---------- موبایل: هیرو و هدر صفحه اول — بدون کشیده شدن به چپ ---------- */
@media (max-width: 768px) {
    body.page-home {
        overflow-x: hidden;
        width: 100%;
    }

    body.page-home .site-header .container,
    body.page-home .header-inner {
        padding-inline-start: max(1rem, env(safe-area-inset-left));
        padding-inline-end: max(1rem, env(safe-area-inset-right));
    }

    body.page-home .main-nav {
        background: var(--header-bg);
        border-bottom-color: var(--border-color);
    }

    body.page-home .container {
        padding-inline-start: max(1rem, env(safe-area-inset-left));
        padding-inline-end: max(1rem, env(safe-area-inset-right));
        width: 100%;
        max-width: 100%;
    }

    body.page-home .hero-banner-inner {
        width: 100%;
        max-width: 100%;
        padding-inline-start: max(1rem, env(safe-area-inset-left));
        padding-inline-end: max(1rem, env(safe-area-inset-right));
    }

    body.page-home .header-inner {
        padding: 0.6rem 0;
        gap: 0.75rem;
        min-height: 56px;
    }

    body.page-home .logo-mark {
        width: 48px;
        height: 48px;
    }

    body.page-home .logo-main {
        font-size: 1.1rem;
    }

    body.page-home .logo-sub {
        font-size: 0.7rem;
    }

    body.page-home .hero-banner {
        min-height: auto;
        padding: 0;
    }

    body.page-home .hero-banner-inner {
        padding: max(1.25rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
        padding-top: max(1.5rem, env(safe-area-inset-top));
    }

    body.page-home .hero-banner-grid {
        gap: 1.5rem;
    }

    body.page-home .hero-banner-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    body.page-home .hero-banner-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    body.page-home .btn-hero-cta {
        width: 100%;
        max-width: 100%;
        min-height: 56px;
        padding: 1.1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 0.75rem;
    }

    body.page-home .hero-banner-image {
        border-radius: 1rem;
        margin-top: 0.25rem;
    }

    body.page-home .hero-banner-image img {
        max-height: 280px;
        min-height: 200px;
        object-fit: cover;
        object-position: center center;
    }

    body.page-home .hero-features {
        padding: 1.5rem max(1rem, env(safe-area-inset-right)) 1.5rem max(1rem, env(safe-area-inset-left));
    }

    body.page-home .hero-features-grid {
        gap: 1rem;
        padding: 0 0.25rem;
    }

    body.page-home .hero-feature-card {
        padding: 1.25rem 1rem;
        border-radius: 1rem;
    }

    body.page-home .hero-feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    body.page-home .hero-feature-title {
        font-size: 1rem;
    }

    body.page-home .hero-feature-desc {
        font-size: 0.875rem;
    }

    body.page-home .hero-tagline {
        padding: 1.25rem max(1rem, env(safe-area-inset-left));
    }

    body.page-home .hero-tagline-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body.page-home .hero-banner-title {
        font-size: 1.35rem;
    }

    body.page-home .hero-banner-subtitle {
        font-size: 0.9rem;
    }

    body.page-home .logo-mark {
        width: 42px;
        height: 42px;
    }

    body.page-home .hero-banner-image img {
        max-height: 240px;
        min-height: 180px;
    }
}

/* ---------- سه کارت ویژگی زیر هیرو ---------- */
body.page-home .hero-features {
    padding: clamp(2rem, 5vw, 3rem) 0;
    background: var(--bg-secondary);
}

body.page-home .hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    body.page-home .hero-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

body.page-home .hero-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    border-bottom: 3px solid var(--accent-border);
    transition: box-shadow 0.2s ease;
}

body.page-home .hero-feature-icon {
    color: var(--charcoal);
    background: var(--accent-soft);
}

body.page-home .hero-feature-card:hover {
    box-shadow: 0 8px 24px var(--shadow-color);
}

body.page-home .hero-feature-icon-legal {
    font-size: 1.5rem;
}

body.page-home .hero-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: 50%;
}

body.page-home .hero-feature-icon-globe,
body.page-home .hero-feature-icon-heart {
    font-size: 1.75rem;
}

body.page-home .hero-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

body.page-home .hero-feature-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ---------- تگ‌لاین ---------- */
body.page-home .hero-tagline {
    padding: 1.5rem 1rem;
    background: var(--bg-primary);
    text-align: center;
}

body.page-home .hero-tagline-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

body.page-home .hero-tagline-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: var(--border-color);
}

body.page-home .hero-tagline-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--charcoal);
    margin: 0;
    line-height: 1.6;
}

body.page-home .hero-tagline-highlight {
    color: var(--royal-blue);
    font-weight: 700;
}

/* ---------- محتوای اصلی زیر هیرو (بخش دوم) ---------- */
body.page-home .hero-main {
    padding: clamp(2rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
    background: var(--bg-primary);
}

/* Hero - ساده و شیک (فقط برای .hero-main) */
body.page-home .hero-main .hero-main-content {
    max-width: 42rem;
    margin: 0 auto;
}

body.page-home .hero-title-secondary {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: var(--text-primary);
    line-height: 1.4;
    letter-spacing: -0.02em;
}

body.page-home .hero {
    padding: 0;
    background: var(--bg-primary);
}

body.page-home .hero-main-content {
    max-width: 42rem;
    margin: 0 auto;
}

body.page-home .hero-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: var(--text-primary);
    line-height: 1.4;
    letter-spacing: -0.02em;
}

body.page-home .hero-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    body.page-home .hero-two-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

body.page-home .hero-main-card,
body.page-home .hero-docs-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px var(--shadow-color);
    text-align: inherit;
    max-width: none;
    margin: 0;
}

body.page-home .hero-main-card h2,
body.page-home .hero-docs-card h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

body.page-home .hero-main-card p,
body.page-home .hero-docs-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

body.page-home .hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

body.page-home .hero-bullets li {
    position: relative;
    padding-inline-start: 1.25rem;
    margin-bottom: 0.35rem;
}

body.page-home .hero-bullets li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.5em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}

body.page-home .documents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.page-home .documents-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

body.page-home .check-icon {
    color: var(--accent);
    font-weight: 600;
}

body.page-home .documents-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 1rem 0 0;
    line-height: 1.6;
}

body.page-home .hero-dual-citizenship-card {
    margin-top: 1.5rem;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: none;
}

body.page-home .hero-dual-citizenship-card:hover {
    transform: none;
    box-shadow: none;
}

body.page-home .hero-dual-citizenship-card h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
    background: none;
    -webkit-text-fill-color: inherit;
}

body.page-home .dual-citizenship-content p,
body.page-home .example-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

body.page-home .example-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 0.75rem;
}

body.page-home .example-box strong {
    color: var(--accent);
}

/* CTA - دکمه شیک */
body.page-home .hero-cta {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

body.page-home .cta-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0 0 1rem;
}

body.page-home .btn-whatsapp,
body.page-home .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 0.5rem;
    background: var(--accent);
    color: #fff;
    border: none;
    transition: opacity 0.2s ease;
}

body.page-home .btn-whatsapp:hover,
body.page-home .btn-primary:hover {
    opacity: 0.9;
}

body.page-home .btn-text {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
}

/* سه ستون - واکنش‌گرا */
body.page-home .three-columns-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 0;
}

@media (min-width: 768px) {
    body.page-home .three-columns-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

body.page-home .info-column {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.25rem;
    overflow: hidden;
}

body.page-home .column-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

body.page-home .column-icon {
    font-size: 1.25rem;
    opacity: 0.9;
}

body.page-home .column-header h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

body.page-home .basic-service-item {
    background: none;
    border: none;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
}

body.page-home .basic-service-item:last-child {
    border-bottom: none;
}

body.page-home .basic-service-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

body.page-home .advantage-item-compact {
    background: none;
    border: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
}

body.page-home .advantage-item-compact:last-child {
    border-bottom: none;
}

body.page-home .advantage-item-compact h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

body.page-home .advantage-item-compact p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

body.page-home .process-step-compact {
    background: none;
    border: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
}

body.page-home .process-step-compact:last-child {
    border-bottom: none;
}

body.page-home .step-number-small {
    background: var(--accent-soft);
    color: var(--accent);
    border: none;
    box-shadow: none;
}

body.page-home .step-content-compact h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

body.page-home .process-intro-compact {
    background: var(--accent-soft);
    color: var(--text-secondary);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

body.page-home .service-icon,
body.page-home .advantage-icon-small {
    opacity: 0.85;
}

body.page-home .section,
body.page-home .section-alt {
    padding: clamp(2rem, 5vw, 3rem) 0;
}

body.page-home .section-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
}

body.page-home .section-alt {
    background: var(--bg-secondary);
}

/* کارت‌های خدمات - ساده */
body.page-home .card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 1px 3px var(--shadow-color);
}

body.page-home .card:hover {
    box-shadow: 0 4px 12px var(--shadow-color);
}

body.page-home .card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

body.page-home .card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

body.page-home .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    body.page-home .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* فوتر و لینک‌ها */
body.page-home .main-nav li.active > a {
    background: var(--accent-soft);
    color: var(--accent);
    box-shadow: none;
    border: 1px solid var(--accent-border);
}

/* بخش Artmakers - ساده و شیک */
body.page-home .artmakers-partnership {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 0.75rem;
    box-shadow: none;
}

body.page-home .partnership-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

body.page-home .partnership-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

body.page-home .discount-code {
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--accent-border);
    border-radius: 0.5rem;
    gap: 0.5rem;
}

body.page-home .code-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

body.page-home .code-value {
    color: var(--accent);
    font-weight: 600;
}

body.page-home .copy-btn {
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    color: var(--accent);
}

body.page-home .copy-btn:hover {
    background: var(--accent-border);
    opacity: 0.9;
}

/* مزایا (benefits) - کارت ساده */
body.page-home .benefit-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 1px 3px var(--shadow-color);
}

body.page-home .benefit-item:hover {
    box-shadow: 0 4px 12px var(--shadow-color);
    border-color: var(--accent-border);
    transform: translateY(-2px);
}

body.page-home .benefit-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

body.page-home .benefit-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

body.page-home .benefit-icon {
    font-size: 1.75rem;
    opacity: 0.9;
}

body.page-home .benefits-grid {
    gap: 1rem;
}

@media (min-width: 640px) {
    body.page-home .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    body.page-home .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FAQ - ساده */
body.page-home .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

body.page-home .faq-item:hover {
    border-color: var(--accent-border);
    box-shadow: 0 2px 8px var(--shadow-color);
}

body.page-home .faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

body.page-home .faq-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

body.page-home .faq-toggle-icon {
    color: var(--accent);
}

/* Contact CTA - ساده */
body.page-home .contact-cta {
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    box-shadow: none;
}

body.page-home .contact-cta h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

body.page-home .contact-cta p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

body.page-home .contact-cta .btn-primary,
body.page-home .contact-cta .btn-whatsapp {
    background: var(--accent);
    color: #fff;
}

/* خدمات مانا - بج‌ها */
body.page-home .mana-intro {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

body.page-home .service-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

body.page-home .service-badge:hover {
    border-color: var(--accent-border);
    color: var(--accent);
    background: var(--accent-soft);
}

/* تصویر بخش benefits */
body.page-home .info-section-image {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow-color);
}

body.page-home .info-section-image img {
    height: auto;
    max-height: 280px;
    object-fit: cover;
}

/* کارت خدمات (service-card) در صفحه اول */
body.page-home .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px var(--shadow-color);
}

body.page-home .service-card:hover {
    box-shadow: 0 4px 12px var(--shadow-color);
    border-color: var(--accent-border);
}

body.page-home .service-card .card-image {
    border-radius: 0.75rem 0.75rem 0 0;
}

body.page-home .service-card .card-image img {
    transition: transform 0.3s ease;
}

body.page-home .service-card:hover .card-image img {
    transform: scale(1.03);
}

body.page-home .card-icon span {
    background: var(--accent-soft);
    color: var(--accent);
    border: none;
}

/* موبایل - صفحه اول */
@media (max-width: 720px) {
    body.page-home .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    body.page-home .hero {
        padding: 1.5rem 0 1.75rem;
    }

    body.page-home .hero-main-card,
    body.page-home .hero-docs-card {
        padding: 1.25rem;
    }

    body.page-home .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    body.page-home .info-column {
        padding: 1rem;
    }

    body.page-home .section,
    body.page-home .section-alt {
        padding: 1.5rem 0;
    }

    body.page-home .artmakers-partnership {
        padding: 1.25rem 1rem;
        margin-top: 1.5rem;
    }

    body.page-home .partnership-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    body.page-home .discount-code {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    body.page-home .benefit-item {
        padding: 1rem;
    }

    body.page-home .faq-item {
        padding: 1rem 1.25rem;
    }

    body.page-home .contact-cta {
        padding: 1.5rem 1rem;
    }

    body.page-home .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    body.page-home .cta-buttons .btn-primary,
    body.page-home .cta-buttons .btn-whatsapp {
        width: 100%;
        min-height: 48px;
        padding: 0.85rem 1rem;
    }

    body.page-home .btn-whatsapp,
    body.page-home .btn-primary {
        min-height: 48px;
        padding: 0.85rem 1.25rem;
    }

    body.page-home .services-list {
        gap: 0.5rem;
    }

    body.page-home .service-badge {
        padding: 0.6rem 1rem;
    }

    body.page-home .info-section-image img {
        max-height: 200px;
    }
}

/* نوک انگشت و لمسی - دکمه‌ها و لینک‌ها در موبایل */
@media (max-width: 720px) and (pointer: coarse) {
    body.page-home .main-nav a,
    body.page-home .btn-whatsapp,
    body.page-home .btn-primary,
    body.page-home .btn-text,
    body.page-home .copy-btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    body.page-home .faq-header {
        padding: 0.75rem 0;
        min-height: 48px;
        align-items: center;
    }
}


