/* استایل های سفارشی برای صفحه اصلی */

/* لودینگ صفحه */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s, visibility 0.8s;
}

.loader {
    width: 150px;
    height: 150px;
    position: relative;
    animation: pulse 1.5s infinite;
}

.loader img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.loader-text {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* سکشن قیمت ها */
.price_section {
    background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
    padding: 60px 0;
}

.price_section .heading_container h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    color: #333;
}

.price_section .heading_container h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #d4af37, #f5cc7f);
}

.price_container .box {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.price_container .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.price_container .box h2 {
    background: linear-gradient(135deg, #d4af37, #f5cc7f);
    color: #fff;
    text-align: center;
    padding: 15px;
    margin: 0;
    border-radius: 15px 15px 0 0;
    font-size: 22px;
}

.price_container .table {
    margin-bottom: 0;
}

.price_container .table thead th {
    background-color: #f5f5f5;
    border-bottom: 2px solid #ddd;
    font-weight: bold;
    color: #333;
    padding: 12px;
    font-size: 12px;
}

.price_container .table tbody tr {
    transition: all 0.3s ease;
}

.price_container .table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.price_container .table td {
    vertical-align: middle;
    padding: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
}

/* آیکون ها */
.price_container .table img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    margin-right: 10px;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.price_container .table img:hover {
    transform: scale(1.2);
}

/* استایل بخش قیمت‌ها */
.price-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.price-row:hover {
    background-color: #f0f0f0;
    transform: translateX(-5px);
}

.price-label {
    font-weight: bold;
    color: #666;
}

.price-value {
    font-weight: bold;
    color: #333;
}

.not-available {
    color: #999;
    font-style: italic;
}

/* بخش تماس با ما */
.contact_section {
    background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
}

.contact_section form input,
.contact_section form .message-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    width: 100%;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact_section form input:focus,
.contact_section form .message-box:focus {
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.contact_section .submit-btn {
    background: linear-gradient(135deg, #d4af37, #f5cc7f);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact_section .submit-btn:hover {
    background: linear-gradient(135deg, #f5cc7f, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* پیام هشدار */
.alert {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alert-warning {
    background-color: #fff8e1;
    border-left: 5px solid #ffc107;
    color: #856404;
} 