/* Transport Detail Page Styles */

.transport-detail-body {
    background-color: #f8f9fa;
    color: #333;
    font-family: 'Inter', sans-serif;
}

/* Page Header with Wave */
.page-header-wavy {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    padding: 80px 0 120px;
    position: relative;
    color: white;
    text-align: center;
}

.header-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.9;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 10px;
}

.header-wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    fill: #f8f9fa;
}

/* Transport Method Cards */
.transport-method-card {
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.transport-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.method-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin: 0 auto;
}

.bg-air { background: #4dabf7; }
.bg-train { background: #51cf66; }
.bg-road { background: #ff922b; }

.method-icon {
    font-size: 1.8rem;
}

.method-title {
    font-weight: 700;
    margin-top: 15px;
    text-align: center;
}

.method-list li {
    font-size: 0.9rem;
    color: #666;
}

/* Do's and Don'ts Section */
.dos-donts-wrapper {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.dos-donts-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.guideline-column {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-radius: 20px;
}

.column-dos {
    background: rgba(40, 167, 69, 0.05);
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.column-donts {
    background: rgba(220, 53, 69, 0.05);
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.guideline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.column-dos .guideline-title { color: #28a745; }
.column-donts .guideline-title { color: #dc3545; }

.guideline-list {
    list-style: none;
    padding: 0;
}

.guideline-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #495057;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.guideline-list li i {
    margin-top: 4px;
    font-size: 1.1rem;
}

.column-dos li i { color: #28a745; }
.column-donts li i { color: #dc3545; }

/* Expert Conclusion */
.conclusion-box {
    background: linear-gradient(135deg, #2c3e50, #000000);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
}

.expert-title {
    color: #ffc107;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.expert-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.conclusion-faded {
    background: #f1f3f5;
    border-left: 5px solid #ff6b6b;
    padding: 20px;
    border-radius: 0 15px 15px 0;
}

.conclusion-text {
    font-style: italic;
    color: #495057;
}

/* Related FAQs */
.related-faqs {
    padding: 80px 0;
    background: white;
}

.related-faqs-title {
    font-weight: 800;
    color: #212529;
}

.related-list-group {
    border-radius: 15px;
    overflow: hidden;
}

.related-list-item {
    transition: all 0.2s ease;
}

.related-list-item:hover {
    background: #fff5f5 !important;
    padding-left: 3rem !important;
}

.related-question {
    font-weight: 600;
    color: #333;
}

.back-to-transport-btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .header-title { font-size: 1.8rem; }
    .dos-donts-wrapper { padding: 20px; }
    .guideline-column { min-width: 100%; }
}
