.elementor-166 .elementor-element.elementor-element-7701786{--display:flex;--min-height:1440px;}/* Start custom CSS for html, class: .elementor-element-29b9d9c */:root {
    /* پالت رنگی اصلی کات استند - ثابت و بدون تغییر برای حفظ هماهنگی ۳۰ نمونه کار */
    --bg-dark: #0b0f19;
    --bg-card: #161b28;
    --bg-input: #0f131f;
    --bg-header: #05070a;
    --accent-primary: #ff2a2a; 
    --accent-gradient: linear-gradient(90deg, #d00000 0%, #ff4d4d 100%);
    --accent-glow: rgba(255, 42, 42, 0.4);
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --text-light-gray: #e2e8f0;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-family: 'Vazirmatn', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.7;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-primary); border-radius: 4px; }

.elementor-breakout {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.4; }

.text-accent { color: var(--accent-primary); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 45px;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.4s;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 25px -5px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -5px var(--accent-glow);
}

/* Header */
.main-header {
    background-color: rgba(5, 7, 10, 0.98);
    backdrop-filter: blur(15px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid var(--border-color);
    transition: padding 0.4s ease, background-color 0.4s ease;
}

.main-header.scrolled {
    padding: 10px 0;
    background-color: rgba(5, 7, 10, 1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i { color: var(--accent-primary); font-size: 24px; }

.nav-menu ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light-gray);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover, .nav-menu a.active { color: var(--accent-primary); }

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: 0.3s;
}

.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

/* Hero Section */
.project-hero {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    overflow: hidden;
    background-color: #000;
}

.project-hero-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?q=80&w=2000&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    z-index: 1;
    opacity: 0.4;
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark) 0%, rgba(11, 15, 25, 0.6) 50%, rgba(11, 15, 25, 0.9) 100%);
    z-index: 2;
}

.project-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.breadcrumb a { color: var(--text-light-gray); transition: 0.3s; }
.breadcrumb a:hover { color: var(--accent-primary); }

.project-title {
    font-size: 4rem;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.project-category {
    color: var(--accent-primary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Meta Bar */
.project-meta-bar {
    background: rgba(22, 27, 40, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--accent-primary);
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.meta-item span {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-item strong {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

/* Story Section */
.project-story {
    padding: 120px 0 60px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-right: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    height: calc(100% - 10px);
    width: 4px;
    background: var(--accent-primary);
    border-radius: 4px;
}

.story-sidebar .section-title {
    position: sticky;
    top: 120px;
}

.story-content p {
    color: var(--text-light-gray);
    font-size: 1.15rem;
    line-height: 2.2;
    margin-bottom: 30px;
    text-align: justify;
}

.highlight-box {
    background: rgba(255, 42, 42, 0.05);
    border-right: 4px solid var(--accent-primary);
    padding: 35px 35px 35px 60px;
    border-radius: 8px 0 0 8px;
    margin: 40px 0;
    position: relative;
}

.highlight-box::before {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 40px;
    color: rgba(255, 42, 42, 0.1);
}

.highlight-box p {
    color: white;
    font-size: 1.3rem;
    font-style: italic;
    margin: 0;
    line-height: 1.8;
}

/* Project Features */
.project-features {
    padding: 60px 0;
    background: rgba(22, 27, 40, 0.3);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 16px;
    transition: 0.4s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 42, 42, 0.1);
    color: var(--accent-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.feature-card:hover .feature-icon {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Tech Specs Table */
.project-specs {
    padding: 100px 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
    transition: 0.3s;
}

.specs-table tr:hover {
    background: rgba(255, 42, 42, 0.03);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 25px 30px;
    color: var(--text-light-gray);
}

.specs-table td:first-child {
    width: 30%;
    font-weight: 700;
    color: white;
    border-left: 1px solid var(--border-color);
    background: rgba(0,0,0,0.2);
}

/* Timeline */
.project-timeline {
    padding: 80px 0;
    position: relative;
}

.timeline-wrapper {
    position: relative;
    margin-top: 50px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-right: 60px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    right: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border: 3px solid var(--accent-primary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--accent-glow);
}

.timeline-content {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.timeline-date {
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(255, 42, 42, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Main Gallery */
.project-gallery {
    padding: 60px 0 100px 0;
}

.single-showcase {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #111;
}

.stand-showcase {
    max-width: 800px;
    margin: 0 auto;
    height: auto;
    aspect-ratio: 3/4;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.single-showcase:hover .showcase-img {
    transform: scale(1.03);
}

.showcase-overlay {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(22, 27, 40, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    border-right: 3px solid var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 500;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.single-showcase:hover .showcase-overlay {
    transform: translateY(0);
    opacity: 1;
}

.showcase-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 42, 42, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 18px;
}

/* Navigation */
.project-nav {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #05070a;
}

.nav-block {
    padding: 60px;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-block:hover {
    background: var(--bg-card);
}

.nav-block:first-child {
    border-left: 1px solid var(--border-color);
    align-items: flex-start;
}

.nav-block:last-child {
    align-items: flex-end;
    text-align: left;
}

.nav-label {
    color: var(--accent-primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.nav-title {
    color: white;
    font-size: 24px;
    font-weight: 800;
}

/* CTA */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background: var(--bg-dark);
    position: relative;
}

footer {
    background-color: #05070a;
    padding: 80px 0 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

@media (max-width: 992px) {
    .project-title { font-size: 2.5rem; }
    .project-meta-bar { grid-template-columns: 1fr 1fr; gap: 20px; padding: 25px; margin-top: -30px; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-sidebar .section-title { position: relative; top: 0; }
    .features-grid { grid-template-columns: 1fr; }
    .specs-table td { padding: 15px; }
    .specs-table td:first-child { width: 40%; font-size: 14px; }
    .stand-showcase { max-width: 100%; aspect-ratio: auto; height: 500px; }
    .showcase-overlay { bottom: 20px; right: 20px; left: 20px; justify-content: center; }
    .project-nav { grid-template-columns: 1fr; }
    .nav-block:first-child { border-left: none; border-bottom: 1px solid var(--border-color); }
    .nav-menu { display: none; }
}/* End custom CSS */