/* ============================================ */
/* استایل‌های اختصاصی صفحه اجاره تجهیزات
/* ============================================ */

.rent-page {
    width: 100%;
    min-height: 100vh;
    background: #0D0F12;
}

.rent-header {
    height: 30vh;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-image: url('../assets/images/slider/3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.rent-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 100%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.rent-header h1,
.rent-header p {
    position: relative;
    z-index: 2;
}

.rent-header h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-indent: 0;
    color: #fff;
}

.rent-header p {
    font-size: 1rem;
    color: #ddd;
}

.rent-container {
    display: flex;
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 30px;
    gap: 50px;
}

.rent-price-image {
    flex: 1;
}

.image-wrapper {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
}

.rent-contact {
    flex: 1;
}

.contact-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-card h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-indent: 0;
    color: #fff;
}

.phone-numbers {
    margin-bottom: 30px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.phone-item:last-child {
    border-bottom: none;
}

.phone-icon {
    font-size: 1.5rem;
    background: rgba(158, 122, 92, 0.15);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.phone-item h3 {
    font-size: 0.85rem;
    margin-bottom: 5px;
    text-indent: 0;
    color: #9e7a5c;
}

.phone-item a {
    font-size: 1.1rem;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.2s;
}

.phone-item a:hover {
    color: #9e7a5c;
}

.rent-info {
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
}

.rent-info h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    text-indent: 0;
    color: #9e7a5c;
}

.rent-info ul {
    list-style: none;
    padding: 0;
}

.rent-info li {
    padding: 6px 0;
    color: #ccc;
    font-size: 0.85rem;
}

.rent-btn {
    width: 100%;
    background: #9e7a5c;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.rent-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .rent-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .rent-header {
        height: 25vh;
        min-height: 200px;
    }
    
    .rent-header h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 25px;
    }
    
    .phone-item a {
        font-size: 0.9rem;
    }
    
    .phone-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .rent-header {
        height: 20vh;
        min-height: 180px;
    }
    
    .rent-header h1 {
        font-size: 1.3rem;
    }
    
    .rent-header p {
        font-size: 0.8rem;
    }
}

footer .copyright a {
    text-decoration: none;
    transition: 0.3s;
}
footer .copyright a:hover {
    color: rgb(123, 141, 212);
    
}