/* ═══════════════════════════════════════
   DESIGN SYSTEM — قالیشویی معجزه
   آبی تیره لاجوردی + طلایی لوکس
═══════════════════════════════════════ */
:root {
    --navy:        #0B1C3D;
    --navy-light:  #132952;
    --navy-mid:    #1A3668;
    --gold:        #C9A84C;
    --gold-light:  #E2C270;
    --gold-pale:   #F5E8C0;
    --white:       #FFFFFF;
    --off-white:   #F7F5F0;
    --text-dark:   #0D1B35;
    --text-mid:    #3D5278;
    --text-light:  #8096B8;
    --border:      rgba(201,168,76,0.2);
    --glass:       rgba(11,28,61,0.7);
    --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
    --shadow-navy: 0 8px 40px rgba(11,28,61,0.35);
    --radius:      16px;
    --radius-lg:   24px;
    --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Vazirmatn', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
    direction: rtl;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── TYPOGRAPHY ─── */
h1 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; }
p  { font-size: 1rem; line-height: 1.8; color: var(--text-mid); }
a { unicode-bidi: embed;}
a[href^="https://sevinsoft.ir"] {
    color: var(--gold);
}
.hover_1 .oh {
  position: absolute;
  content: "";
  width: 25%;
  height: 100%;
  left: 0;
  background: var(--color-set-one-2);
    background-color: ;
    background-position-x: ;
    background-position-y: ;
    background-repeat: ;
    background-attachment: ;
    background-image: ;
    background-size: ;
    background-origin: ;
    background-clip: ;
  transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  bottom: -50%;
  transform: translateY(50%);
  opacity: 0;
}
/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.text-gold { color: var(--gold); }
.badge {
    display: inline-block;
    background: rgba(201,168,76,0.12);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}
.carpet-img-wrap {height: -webkit-fill-available; }
.carpet-img-wrap img { width:100%; height:100%; object-fit:cover; border-radius:8px; }
img {height: -webkit-fill-available;}
/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.4s ease;
}
header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-navy);
    padding: 10px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.logo-text { color: var(--white); }
.logo-text strong { display: block; font-size: 1.05rem; font-weight: 800; }
.logo-text span { font-size: 0.72rem; color: var(--gold-light); opacity: 0.9; }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}
nav a:hover { color: var(--gold); background: rgba(255,255,255,0.06); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.phone-badge {
    display: flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 16px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.phone-badge:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }

/* mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    width: 260px;
    text-align: center;
    transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
    position: absolute; top: 20px; left: 20px;
    background: none; border: none;
    color: var(--white); font-size: 1.6rem;
    cursor: pointer;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-page-content{
    min-height: 30vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
/* carpet pattern background */
.hero-pattern {
    position: absolute; inset: 0;
    opacity: 0.04;
    background-image:
            repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%),
            repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
    background-size: 30px 30px;
}

.hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    top: 50%; left: 30%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero-glow-2 {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,54,104,0.6) 0%, transparent 70%);
    bottom: -100px; right: -100px;
}

.hero-content {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-text { color: var(--white); }
.hero-eyebrow {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 24px;
}
.eyebrow-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}
.eyebrow-text { font-size: 0.82rem; color: var(--gold-light); font-weight: 600; letter-spacing: 0.08em; }

.hero h1 { margin-bottom: 20px; }
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.9;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust {
    display: flex; gap: 28px; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.trust-icon { color: var(--gold); font-size: 1rem; }

/* hero visual */
.hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.carpet-showcase {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--navy-light), var(--navy-mid));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-navy), 0 0 0 1px rgba(201,168,76,0.1);
}
.carpet-inner {
    position: absolute; inset: 20px;
    background: linear-gradient(145deg, #1e3a6e, #0f2347);
    border-radius: 12px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    overflow: hidden;
}
.carpet-emoji { font-size: 5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }
.carpet-label {
    color: rgba(255,255,255,0.6); font-size: 0.78rem;
    font-weight: 600; letter-spacing: 0.1em;
}

/* floating cards */
.float-card {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
    animation: float-y 4s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: 1s; }
.float-card:nth-child(3) { animation-delay: 2s; }
@keyframes float-y {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.fc-1 { top: 20px; right: 4px;text-align: center; }
.fc-2 { bottom: 80px; left: 8px;text-align: center; }
.fc-3 { top: 50%; right: 2px;text-align: center; }
.fc-num { font-size: 1.3rem; color: var(--gold); font-weight: 900; }

/* ═══ STATS STRIP ═══ */
.stats-strip {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 32px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.stat-item {
    padding: 8px 20px;
    border-right: 1px solid rgba(11,28,61,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--navy); }
.stat-label { font-size: 0.82rem; font-weight: 600; color: rgba(11,28,61,0.65); margin-top: 2px; }

/* ═══ SERVICES ═══ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.service-card {
    text-align: -webkit-center;
    background: var(--white);
    border: 1px solid rgba(11,28,61,0.07);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    transition: width 0.4s ease;
}
.service-card:hover { 
    transform: translateY(-6px);
    box-shadow: var(--shadow-navy);
    border-color: transparent;
    background: rgba(255, 255, 255, 0.5);
}

.service-card:hover::before { width: 100%; }
.service-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(11,28,61,0.06), rgba(11,28,61,0.1));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.service-card:hover {
    box-shadow: var(--shadow-navy); transform: translateY(-4px);
}
.service-card h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; }
.service-card p { 
    font-size: 0.85rem;
    line-height: 1.7; 
    color: #4f5154;
}
.service-card:hover p{ 
    font-size: 0.85rem;
    line-height: 1.7; 
    color: #fff;
}
.service-card:hover h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}
.service-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    padding: 4px 10px;
    background: rgba(201,168,76,0.1);
    border-radius: 100px;
}

/* ═══ HOW IT WORKS ═══ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px; right: 12.5%; left: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
    opacity: 0.3;
}
.step-item { text-align: center; padding: 0 20px; position: relative; }
.step-num {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 900;
    margin: 0 auto 20px;
    position: relative; z-index: 1;
    box-shadow: var(--shadow-gold);
}
.step-item h3 { font-size: 0.95rem; margin-bottom: 8px; }
.step-item p { font-size: 0.82rem; }

/* ═══ WHY US ═══ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}
.why-image {
    background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    height: -webkit-fill-available;
}
.why-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,28,61,0.6) 0%, transparent 60%);
}
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature {
    display: flex; gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.why-feature:hover {
    background: rgba(201,168,76,0.06);
    border-color: rgba(201,168,76,0.3);
    transform: translateX(-4px);
}
.why-feat-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(201,168,76,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.why-feat-text h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
.why-feat-text p { font-size: 0.82rem; line-height: 1.6; }

/* ═══ REVIEWS ═══ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.review-card {
    width: min-content;
    background: var(--white);
    border: 1px solid rgba(11,28,61,0.07);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}
.stars {color: #C9A84C;}
.fc-icon {color: #fff;font-size: x-large;}
.review-card:hover { box-shadow: var(--shadow-navy); transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-weight: 700; font-size: 0.9rem;
}
.review-name { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.review-date { font-size: 0.74rem; color: var(--text-light); }

/* ═══ FAQ ═══ */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}
.faq-q {
    width: 100%; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0;
    color: var(--white);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: right;
    gap: 16px;
    transition: var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
    width: 28px; height: 28px; flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
}
.faq-item.open .faq-arrow { background: var(--gold); color: var(--navy); transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
    padding: 0 0 20px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.85;
}

/* ═══ ORDER FORM ═══ */
.form-section {
    background: var(--off-white);
    padding: 80px 0;
}
.form-wrapper {
    max-width: 680px; margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: 0 20px 60px rgba(11,28,61,0.08);
    border: 1px solid rgba(11,28,61,0.06);
}
.form-header { text-align: center; margin-bottom: 36px; }
.form-header h2 { margin-bottom: 10px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid #E5E8EF;
    border-radius: 10px;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
    direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit-row {
    margin-top: 24px; text-align: center;
}
.form-submit-row .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ═══ AREAS ═══ */
.areas-grid {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: 40px;
    justify-content: center;
}
.area-chip {
    padding: 10px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem; font-weight: 500;
    transition: var(--transition);
    cursor: default;
}
.area-chip:hover {
    background: rgba(201,168,76,0.12);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ═══ FOOTER ═══ */
footer {
    background: #060F22;
    padding: 60px 0 28px;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-top: 14px;
    max-width: 280px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.83rem;
    padding: 5px 0;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); padding-right: 6px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
}

/* ═══ FLOATING BUTTONS ═══ */
.floating-btns {
    position: fixed;
    left: 20px; bottom: 20px;
    display: flex; flex-direction: column; gap: 10px;
    z-index: 900;
}
.float-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.float-btn:hover { transform: scale(1.12); }
.fb-whatsapp { background: #25D366; color: white; }
.fb-phone { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #fff; }
.fb-top { background: var(--navy); color: var(--white); border: 1px solid var(--border); }

/* ═══ SKELETON ═══ */
@keyframes shimmer {
    0% { background-position: -800px 0; }
    100% { background-position: 800px 0; }
}
.skeleton {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 800px 100%;
    animation: shimmer 1.6s infinite;
    border-radius: 8px;
}

/* ═══ ANIMATIONS ═══ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .steps-grid::before { display: none; }
}
@media (max-width: 768px) {
    nav { display: none; }
    .header-cta .phone-badge { display: none; }
    .hamburger { display: flex; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-visual { display: none; }
    .hero-trust { justify-content: center; }
    .hero-actions { justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(11,28,61,0.1); }
    .why-grid { grid-template-columns: 1fr; }
    .why-image { display: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-wrapper { padding: 28px 20px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
.reviews-wrapper {
    overflow: hidden;
    width: 100%;
}

.reviews-grid {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    direction: rtl;
}

.reviews-wrapper {
    overflow: hidden;
    width: 100%;
}

.reviews-grid {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    direction: rtl;
}

/* دسکتاپ: ۳ کارت */
.review-card {
    min-width: calc(33.333% - 1rem);
    flex-shrink: 0;
    box-sizing: border-box;
}

/* موبایل: ۱ کارت کامل بدون بیرون‌زدگی */
@media (max-width: 768px) {
    .reviews-grid {
        gap: 0;
    }
    .review-card {
        min-width: 100%;
    }
}
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a3668;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
    min-width: 160px;
    list-style: none;
    z-index: 100;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    margin: 0 10px 0 10px;
    white-space: nowrap;
    transition: background 0.2s;
}

.nav-dropdown-menu li a:hover {
    background: #958b8b36;
}

/* نمایش با hover */
.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}
#page-content {
  transition: opacity 0.2s ease;
}
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.reviews-btn-prev,
.reviews-btn-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: inherit;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s;
}

.reviews-btn-prev:hover,
.reviews-btn-next:hover {
  background: rgba(255,255,255,0.25);
}
.stat-num {
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
}