/* --- СТИЛИ ДЛЯ СТРАНИЦЫ ДОСТАВКИ --- */
.delivery-main {
    padding-top: 70px; /* Высота шапки */
}

.delivery-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1920x400/fd7e14/ffffff?text=Доставка') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.delivery-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.delivery-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.delivery-content {
    padding: 80px 20px;
}

.features-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background-color: var(--surface-color);
    padding: 40px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--subtext-color);
    line-height: 1.7;
}

.delivery-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.option-card {
    border-radius: 16px;
    color: white;
    padding: 40px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.option-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.option-card.ashgabat {
    background-image: url('https://placehold.co/600x400/0d6efd/ffffff?text=Ашхабад');
}
.option-card.regions {
    background-image: url('https://placehold.co/600x400/198754/ffffff?text=Велаяты');
}

.option-content {
    position: relative;
    z-index: 2;
}

.option-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.option-content .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.how-it-works {
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    width: 30%;
    position: relative;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
    border: 5px solid var(--surface-color);
}

.timeline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.timeline-item p {
    color: var(--subtext-color);
}

@media (max-width: 768px) {
    .delivery-hero h1 { font-size: 2.5rem; }
    .delivery-options { grid-template-columns: 1fr; }
    .timeline { flex-direction: column; gap: 40px; }
    .timeline::before { display: none; }
    .timeline-item { width: 100%; }
}
