* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazirmatn', sans-serif;
}

body {
    background-color: #181f32;
}

header {
    background: #232b44;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 0;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #232b44;
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid #2e3650;
}

.top-bar i {
    color: #ff6e9a;
    margin-left: 0.5rem;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: #232b44;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 0 20px 5px #ff6e9a80;
    background: #fff;
    object-fit: contain;
    padding: 5px;
    margin-left: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6e9a;
}

.nav-links i {
    font-size: 0.8rem;
    margin-right: 0.2rem;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #ff6e9a;
    font-size: 1.3rem;
}

.main-title {
    color: #fff;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 2.5rem 0 1.5rem 0;
    letter-spacing: -1px;
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 2rem auto;
    overflow: visible;
    border-radius: 35px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    background: #232b44;
}

.slider {
    position: relative;
    height: 500px;
}

.slide {
    min-width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #232b44;
    opacity: 0;
    transition: opacity 0.7s;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0;
    display: block;
    border-radius: 35px;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff6e9a 0%, #ffb86c 100%);
    color: #fff;
    border: none;
    padding: 1.1rem 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 8px #ff6e9a40;
    font-size: 1.3rem;
    transition: background 0.3s, box-shadow 0.3s;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: linear-gradient(135deg, #ffb86c 0%, #ff6e9a 100%);
    box-shadow: 0 4px 16px #ff6e9a80;
}

.prev-btn {
    right: -65px;
}

.next-btn {
    left: -65px;
}

@media (max-width: 1000px) {
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .slider-container {
        max-width: 98vw;
    }
    .main-nav {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 1rem 0.5rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
        align-items: flex-start;
    }
    .nav-links a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    .logo-img {
        margin-left: 0.5rem;
    }
    .prev-btn {
        right: 10px;
    }
    .next-btn {
        left: 10px;
    }
}

footer {
    background: #181f32;
    padding: 2.5rem 0 1.5rem 0;
}

.contact-info-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-box {
    background: #232b44;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 2rem 2.2rem 1.5rem 2.2rem;
    min-width: 260px;
    max-width: 320px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6e9a 0%, #ffb86c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 2.3rem;
    color: #fff;
    box-shadow: 0 2px 12px #ff6e9a40;
}

.contact-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-divider {
    width: 60%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin: 0.5rem auto 1rem auto;
}

.contact-text {
    color: #fff;
    font-size: 1.05rem;
    line-height: 2;
    direction: rtl;
    word-break: break-word;
}

@media (max-width: 900px) {
    .contact-info-section {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .contact-info-box {
        min-width: 90vw;
        max-width: 98vw;
        padding: 1.5rem 0.5rem 1rem 0.5rem;
    }
}

.our-services-section {
    margin-top: 200px;
    padding: 40px 0 60px 0;
    background: none;
    text-align: center;
}

.services-title {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: bold;
    letter-spacing: -1px;
}

.services-divider {
    width: 90px;
    height: 4px;
    margin: 0.7rem auto 2.2rem auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff6e9a 0%, #ffb86c 100%);
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 0;
    row-gap: 10px;
    justify-items: center;
}

.service-card {
    background: #232b44;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    min-width: 320px;
    max-width: 350px;
    text-align: center;
    color: #fff;
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6e9a 0%, #ffb86c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    font-size: 2.3rem;
    color: #fff;
    box-shadow: 0 2px 12px #ff6e9a40;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.7rem;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 2;
    direction: rtl;
}

@media (max-width: 600px) {
    .services-cards {
        grid-template-columns: 1fr;
    }
}

.our-products-section {
    margin-top: 120px;
    padding: 40px 0 60px 0;
    background: none;
    text-align: center;
}

.products-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.products-divider {
    width: 110px;
    height: 4px;
    margin: 0.7rem auto 3rem auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff6e9a 0%, #ffb86c 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-box {
    text-decoration: none;
    background: #232b44;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.product-box h2 {
    color: #ff6e9a;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* استایل‌های صفحه محصول */
.product-details {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: #232b44;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.product-details-image {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.product-details-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-details-info {
    color: #fff;
    padding: 2rem;
}

.product-details-title {
    color: #ff6e9a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-details-description {
    line-height: 2;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.spec-item {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 12px;
} 