/* ============================================
   ال‌جی بازار - استایل کامل
   ============================================ */

@font-face {
    font-family: 'Dana';
    src: url('/fonts/dana/Dana-Regular.woff2') format('woff2'), url('/fonts/dana/Dana-Regular.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Dana';
    src: url('/fonts/dana/Dana-Medium.woff2') format('woff2'), url('/fonts/dana/Dana-Medium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Dana';
    src: url('/fonts/dana/Dana-DemiBold.woff2') format('woff2'), url('/fonts/dana/Dana-DemiBold.woff') format('woff');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Dana';
    src: url('/fonts/dana/Dana-Bold.woff2') format('woff2'), url('/fonts/dana/Dana-Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Dana', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fff;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ هدر ============ */
.lgbazar-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
    transition: box-shadow 0.3s;
}
.lgbazar-header.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 20px;
    position: relative;
}

/* لوگو */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    color: #A50034;
}
.logo-img { max-height: 50px; width: auto; }
.logo-icon { color: #A50034; display: flex; align-items: center; }
.logo-text {
    font-size: 1.1em;
    font-weight: 700;
    color: #A50034;
    white-space: nowrap;
    line-height: 1.2;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 769px) {
    .header-wrap .nav-main {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }
    .nav-mobile-panel { display: none !important; }
}

/* منوی اصلی */
.nav-main {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}
.nav-main > a,
.nav-main > .nav-item > a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95em;
    transition: color 0.3s;
    padding: 8px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.nav-main > a:hover,
.nav-main > .nav-item > a:hover { color: #A50034; }

.nav-main > a::after,
.nav-main > .nav-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #A50034;
    transition: width 0.3s;
}
.nav-main > a:hover::after,
.nav-main > .nav-item > a:hover::after { width: 100%; }

.nav-item { position: relative; }
.nav-item > a i { font-size: 0.7em; transition: transform 0.3s; }
.nav-item:hover > a i,
.nav-item.open > a i { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}
.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #2c3e50;
    font-size: 0.9em;
    transition: all 0.2s;
}
.nav-dropdown a:hover { background: #f8f9fa; color: #A50034; padding-right: 25px; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #A50034;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s;
    white-space: nowrap;
}
.btn-phone:hover {
    background: #7A0028;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(231, 76, 60, 0.3);
}
.btn-phone i { font-size: 0.9em; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    font-size: 22px;
    color: #2c3e50;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
}
.menu-toggle .menu-icon-close { display: none; }
.menu-toggle.active .menu-icon-open { display: none; }
.menu-toggle.active .menu-icon-close { display: inline; }
.menu-toggle:hover { background: #f8f9fa; }
.menu-toggle.active { color: #A50034; background: #f8f9fa; }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.nav-overlay.visible { display: block; opacity: 1; }
body.nav-open { overflow: hidden; }

.nav-mobile-panel {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 88vw);
    background: #fff;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    z-index: 999;
    overflow: hidden;
}
.nav-mobile-panel.open {
    display: flex;
    transform: translateX(0);
}
.nav-mobile-head {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
}
.nav-mobile-head span { font-weight: 700; font-size: 1.05em; color: #2c3e50; }
.nav-mobile-head button {
    width: 40px; height: 40px; border: none; background: #f8f9fa;
    border-radius: 8px; color: #A50034; font-size: 1.2em; cursor: pointer;
}
.nav-mobile-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.nav-mobile-foot {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
    flex-shrink: 0;
}
.nav-mobile-call, .nav-mobile-wa {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; border-radius: 10px; text-decoration: none; font-weight: 700;
}
.nav-mobile-call { background: #A50034; color: #fff; }
.nav-mobile-wa { background: #25D366; color: #fff; }

/* ============ اسلاید ============ */
.lgbazar-slides { position: relative; background: #ecf0f1; }
.lgbazar-swiper { height: 500px; }
.lgbazar-slides .swiper-slide,
.lgbazar-slides.single { height: 500px; }
.lgbazar-slides .slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    display: flex;
    align-items: center;
    color: #fff;
}
.slide-overlay h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    max-width: 600px;
}
.slide-overlay p { font-size: 1.2em; max-width: 600px; margin-bottom: 25px; opacity: 0.95; }

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7) !important;
    width: 12px !important;
    height: 12px !important;
}
.swiper-pagination-bullet-active { background: #fff !important; transform: scale(1.2); }

/* ============ هیرو ============ */
.lgbazar-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    padding: 80px 0;
    text-align: right;
}
.lgbazar-hero h1 {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #2c3e50;
}
.hero-sub { font-size: 1.2em; color: #7f8c8d; margin-bottom: 35px; max-width: 700px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 15px; }

/* ============ دکمه‌ها ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-large { padding: 16px 32px; font-size: 1.05em; }
.btn-primary { background: #A50034; color: #fff; }
.btn-primary:hover {
    background: #7A0028;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}
.btn-success { background: #25D366; color: #fff; }
.btn-success:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.btn-outline { background: transparent; color: #A50034; border: 2px solid #A50034; }
.btn-outline:hover { background: #A50034; color: #fff; transform: translateY(-2px); }

/* ============ تماس سریع ============ */
.quick-contact {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 40px 0;
    color: #fff;
}
.quick-contact-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.qc-text h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.qc-text h3 i { color: #A50034; }
.qc-text p { color: rgba(255,255,255,0.8); font-size: 0.95em; }
.qc-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.qc-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    text-decoration: none;
}
.qc-btn:hover { background: #A50034; border-color: #A50034; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3); }
.qc-btn i { font-size: 1.5em; color: #A50034; transition: color 0.3s; }
.qc-btn:hover i { color: #fff; }
.qc-btn div { display: flex; flex-direction: column; }
.qc-btn small { font-size: 0.75em; opacity: 0.7; }
.qc-btn strong { font-size: 1em; font-weight: 600; }
.qc-whatsapp i { color: #25D366; }
.qc-whatsapp:hover { background: #25D366; border-color: #25D366; }

/* ============ اعتماد ============ */
.lgbazar-trust { background: #fff; padding: 40px 0; border-bottom: 1px solid #eee; }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}
.trust-item:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}
.trust-item i { color: #27ae60; font-size: 1.5em; flex-shrink: 0; }
.trust-item span { font-weight: 500; color: #2c3e50; }

/* ============ عنوان بخش ============ */
.section-head { text-align: center; margin-bottom: 50px; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255, 255, 255, 0.9); }
.section-head h2 {
    font-size: 2.3em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}
.section-head h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    background: #A50034;
    border-radius: 2px;
}
.section-head p { color: #7f8c8d; font-size: 1.05em; margin-top: 20px; }
.lgbazar-form .section-head h2::after { background: #fff; }

/* CTA داخل بخش */
.section-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ecf0f1;
}
.section-cta p {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 1.05em;
}

/* ============ خدمات ============ */
.lgbazar-services { padding: 80px 0; background: #fff; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.service-card {
    background: #fff;
    border: 1px solid #ecf0f1;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
    color: #2c3e50;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card:hover {
    border-color: #A50034;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.15);
}
.card-image {
    width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
    margin-bottom: 20px; background: #f8f9fa;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, #A50034, #7A0028);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 2em;
}
.service-card h3 { font-size: 1.15em; font-weight: 600; margin-bottom: 12px; color: #2c3e50; }
.service-card p { color: #7f8c8d; font-size: 0.9em; margin-bottom: 18px; flex-grow: 1; }
.card-link {
    color: #A50034;
    font-weight: 600;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}
.service-card:hover .card-link { gap: 10px; }

/* ============ درباره ============ */
.lgbazar-about { padding: 80px 0; background: #f8f9fa; }
.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1em;
    color: #555;
    line-height: 1.9;
}

/* ============ مقالات ============ */
.lgbazar-articles { padding: 80px 0; background: #fff; }
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    color: #2c3e50;
}
.article-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); }
.article-image { height: 180px; background: #ecf0f1; overflow: hidden; }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.article-card:hover .article-image img { transform: scale(1.05); }
.article-body { padding: 25px; }
.article-body h3 { font-size: 1.1em; font-weight: 600; margin-bottom: 12px; line-height: 1.5; }
.article-body p { color: #7f8c8d; font-size: 0.9em; margin-bottom: 15px; }

/* ============ FAQ ============ */
.lgbazar-faq { padding: 80px 0; background: #f8f9fa; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}
.faq-item[open] { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); }
.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: background 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #f8f9fa; }
.faq-item summary i { color: #A50034; transition: transform 0.3s; font-size: 0.9em; }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-answer { padding: 0 25px 25px; }
.faq-answer p { color: #7f8c8d; line-height: 1.8; }

/* ============ فرم ============ */
.lgbazar-form {
    background: linear-gradient(135deg, #A50034 0%, #7A0028 100%);
    color: #fff;
    padding: 80px 0;
}
.request-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}
.form-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.form-group.full { margin-bottom: 20px; }
.form-group label { padding: 0 15px; color: #A50034; font-size: 1.1em; }
.form-group input,
.form-group select,
.form-group textarea {
    flex: 1;
    border: none;
    padding: 14px 15px 14px 0;
    font-family: inherit;
    font-size: 1em;
    color: #2c3e50;
    background: transparent;
    outline: none;
    width: 100%;
    direction: rtl;
    text-align: right;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    direction: rtl;
    text-align: right;
    color: #95a5a6;
    opacity: 1;
}
.form-group input[name="phone"] {
    text-align: right;
    direction: ltr;
}
.form-group input[name="phone"]::placeholder {
    text-align: right;
    direction: rtl;
}
.form-group textarea { padding: 15px; resize: vertical; min-height: 80px; }
.form-group select {
    cursor: pointer;
    appearance: none;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat left 15px center;
    background-size: 20px;
    padding-left: 40px;
    font-family: 'Dana', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
.form-group select option {
    font-family: 'Dana', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: #2c3e50;
    background: #fff;
    padding: 10px;
    direction: rtl;
}
.btn-submit {
    width: 100%;
    padding: 16px;
    background: #fff;
    color: #A50034;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-submit:hover { background: #2c3e50; color: #fff; transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-msg {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}
.form-msg.success { background: #d4edda; color: #155724; display: block; }
.form-msg.error { background: #f8d7da; color: #721c24; display: block; }

.form-or {
    text-align: center;
    margin: 30px 0 20px;
    color: rgba(255,255,255,0.8);
    position: relative;
}
.form-or::before,
.form-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: rgba(255,255,255,0.3);
}
.form-or::before { right: 0; }
.form-or::after { left: 0; }
.form-or span {
    background: transparent;
    padding: 0 15px;
    font-size: 0.95em;
}

.form-call-cta {
    text-align: center;
}
.btn-call-big {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    color: #A50034;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.btn-call-big:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.btn-call-big i { font-size: 2em; }
.btn-call-big div { display: flex; flex-direction: column; text-align: right; }
.btn-call-big small { font-size: 0.75em; opacity: 0.7; font-weight: 500; }
.btn-call-big strong { font-size: 1.2em; }

/* ============ فوتر ============ */
.lgbazar-footer { background: #1a1a1a; color: #aaa; position: relative; padding-top: 100px; }
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    transform: translateY(-99%);
}
.footer-wave svg { width: 100%; height: 100%; display: block; }
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.footer-logo img {
    max-height: 70px;
    width: auto;
}
.footer-logo-icon {
    display: flex;
    align-items: center;
    background: rgba(231,76,60,0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    justify-content: center;
}
.footer-logo h3 {
    color: #fff;
    font-size: 1.3em;
    font-weight: 700;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: #A50034;
    border-radius: 2px;
}
.footer-col p { color: #aaa; line-height: 1.8; margin-bottom: 15px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.contact-item { display: flex; align-items: center; gap: 12px; color: #aaa; transition: color 0.3s; }
.contact-item:hover { color: #A50034; }
.contact-item i { color: #A50034; width: 20px; text-align: center; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #aaa;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.footer-links a:hover { color: #A50034; transform: translateX(-5px); }
.footer-links a i { color: #A50034; font-size: 0.8em; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1em;
    transition: all 0.3s;
}
.social-links a:hover { background: #A50034; transform: translateY(-3px); }

.footer-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #A50034;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}
.footer-call-btn:hover {
    background: #7A0028;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(231, 76, 60, 0.3);
}

.footer-bottom {
    background: #0d0d0d;
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}

/* ============ دکمه شناور ============ */
.floating-call {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #A50034;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}
.floating-call:hover { transform: scale(1.1); background: #7A0028; }
.floating-call-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #A50034;
    animation: pulse 2s infinite;
    z-index: -1;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}

.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}
.floating-whatsapp:hover { transform: scale(1.1); background: #1da851; }

/* نوار پایین موبایل */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 999;
}
.mb-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px;
    color: #2c3e50;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 0.75em;
    font-weight: 500;
}
.mb-item i {
    font-size: 1.4em;
    color: #A50034;
}
.mb-item.mb-wa i { color: #25D366; }
.mb-item:active { background: #f8f9fa; }

/* ============ موبایل ============ */
@media (max-width: 992px) {
    .nav-main { gap: 20px; }
    .lgbazar-hero h1 { font-size: 2.3em; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .quick-contact-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .header-wrap { padding: 12px 0; gap: 10px; }
    
    .logo { padding-right: 12px; }
    
    .menu-toggle { display: flex; }

    /* منوی دسکتاپ داخل هدر مخفی — پنل جدا باز می‌شود */
    .header-wrap .nav-main { display: none !important; }

    .nav-mobile-head, .nav-mobile-foot { display: flex; }

    .nav-mobile-body .nav-main,
    .nav-mobile-body {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-mobile-body > a,
    .nav-mobile-body > .nav-item > a,
    .nav-mobile-body .nav-main > a,
    .nav-mobile-body .nav-main > .nav-item > a {
        padding: 16px 20px;
        min-height: 52px;
        width: 100%;
        text-align: right;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #2c3e50;
        text-decoration: none;
    }
    .nav-mobile-body > a::after,
    .nav-mobile-body > .nav-item > a::after,
    .nav-mobile-body .nav-main > a::after,
    .nav-mobile-body .nav-main > .nav-item > a::after { display: none; }
    .nav-mobile-body > a:hover,
    .nav-mobile-body > .nav-item > a:hover,
    .nav-mobile-body .nav-main > a:hover,
    .nav-mobile-body .nav-main > .nav-item > a:hover { background: #f8f9fa; }
    .nav-mobile-body .nav-item { width: 100%; position: relative; }
    .nav-mobile-body .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .nav-mobile-body .nav-item.open .nav-dropdown { max-height: 600px; }
    .nav-mobile-body .nav-dropdown a {
        padding: 14px 20px 14px 36px;
        min-height: 48px;
        border-bottom: 1px solid #ecf0f1;
        display: flex;
        align-items: center;
        color: #2c3e50;
        text-decoration: none;
    }
    
    .phone-text { display: none; }
    .btn-phone {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
    }
    .btn-phone i { font-size: 1.1em; }
    
    .lgbazar-swiper,
    .lgbazar-slides .swiper-slide,
    .lgbazar-slides.single { height: 350px; }
    
    .slide-overlay h2 { font-size: 1.6em; }
    .slide-overlay p { font-size: 1em; }
    
    .lgbazar-hero { padding: 40px 0; }
    .lgbazar-hero h1 { font-size: 1.7em; }
    .hero-sub { font-size: 1em; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    
    .qc-buttons { width: 100%; flex-direction: column; }
    .qc-btn { width: 100%; }
    
    .section-head h2 { font-size: 1.6em; }
    
    .lgbazar-services, .lgbazar-about, .lgbazar-articles, .lgbazar-faq, .lgbazar-form {
        padding: 50px 0;
    }
    
    .form-row { grid-template-columns: 1fr; }
    .request-form { padding: 25px 20px; }
    
    .btn-call-big {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .footer-logo { justify-content: center; }
    .footer-col h4::after { right: 50%; transform: translateX(50%); }
    .footer-contact, .social-links { justify-content: center; align-items: center; }
    .contact-item { justify-content: center; }
    .footer-links { text-align: center; }
    .footer-links a { justify-content: center; }
    
    .floating-call { bottom: 75px; left: 16px; width: 54px; height: 54px; font-size: 1.3em; }
    .floating-whatsapp { bottom: 140px; left: 16px; width: 54px; height: 54px; font-size: 1.5em; }
    
    .mobile-bottom-bar { display: flex; padding-bottom: env(safe-area-inset-bottom, 0); }
    body { padding-bottom: 65px; }
    main#main { padding-bottom: 8px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .logo { padding-right: 14px; }
    .logo-text { font-size: 0.95em; }
    .logo-img { max-height: 42px; }
    .header-wrap { gap: 8px; padding: 10px 0; }
    
    .trust-grid, .services-grid { grid-template-columns: 1fr; }
    .lgbazar-hero h1 { font-size: 1.4em; }
    .hero-sub { font-size: 0.95em; }
    .section-head h2 { font-size: 1.4em; }
    
    .footer-wave { height: 60px; }
    .lgbazar-footer { padding-top: 60px; }
    
    .qc-text h3 { font-size: 1.2em; }
    
    .request-form { padding: 20px 15px; }
    
    .btn-call-big { gap: 12px; padding: 14px 16px; }
    .btn-call-big i { font-size: 1.6em; }
    .btn-call-big strong { font-size: 1.05em; }
}