/* de-home-5.css — вынесено из inline <style> компонента view/de/home.php */
.booking-section {
    padding: 50px 0 100px;
    background: #fff;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.booking-card {
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.booking-card.primary {
    background: #000;
    color: #fff;
}

.booking-section .card-header {
    margin-bottom: 2rem;
}

.booking-section .card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.booking-card.primary .card-header {
    padding: .75rem 0;
}
.booking-section .card-header p {
    color: #666;
}
.booking-section .section-title {
    margin-bottom: 0;
}
.primary .card-header p {
    color: rgba(255,255,255,0.7);
}

.booking-section .card-features,
.booking-section .b2b-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.primary .feature {
    color: #fff;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: #f1f3f5;
}

.option-details {
    display: flex;
    flex-direction: column;
}

.option-details span {
    font-weight: 500;
}

.option-details small {
    color: #666;
    font-size: 0.85rem;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.action-button.secondary {
    background: none;
    color: #000;
    border: 1px solid #000;
    background: white;
}

.action-button:hover {
    gap: 1rem;
}

.primary .action-button {
    background: #fff;
    color: #000;
}
.booking-card.primary .card-header h3 {
    color:white;
}
@media (max-width: 1200px) {
    .booking-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-options {
        grid-template-columns: 1fr;
    }
}
