/* =========================================================
   Guwahati to Shillong route page styles
   Reusable route components + page-specific classes.
   No inline styles are used in routes/guwahati-to-shillong.php.
   ========================================================= */

/* ---- Round Trip Advisory ---- */
.roundtrip-advisory {
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    border: 1.5px solid #c7d2fe;
    border-left: 5px solid #667eea;
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.roundtrip-advisory-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}
.roundtrip-advisory-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #3730a3;
    margin-bottom: 8px;
}
.roundtrip-advisory-content p {
    font-size: 0.9rem;
    color: #4338ca;
    line-height: 1.65;
    margin-bottom: 12px;
}
.roundtrip-advisory-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #667eea;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}
.roundtrip-advisory-content a:hover { background: #4f46e5; }

/* ---- Attraction / "why visit" cards ---- */
.why-shergaon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.why-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.why-card-icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h3 { font-size: 0.95rem; font-weight: 700; color: #1f2937; margin-bottom: 6px; }
.why-card p { font-size: 0.85rem; color: #6b7280; line-height: 1.6; }

/* ---- Vehicle cards ---- */
.vehicle-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.vehicle-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.vehicle-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}
.vehicle-card--featured { border-color: #667eea; }
.vehicle-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}
.vehicle-name { font-size: 1.05rem; font-weight: 700; color: #1f2937; }
.vehicle-model { font-size: 0.8rem; color: #6b7280; margin-top: 2px; }
.vehicle-fare { text-align: right; }
.vehicle-fare-price { font-size: 1.2rem; font-weight: 800; color: #667eea; }
.vehicle-fare-label { font-size: 0.75rem; color: #9ca3af; }
.vehicle-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.spec-badge {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    font-size: 0.78rem;
    color: #374151;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}
.vehicle-best-for {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.5;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}
.vehicle-best-for strong { color: #667eea; }
.vehicle-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    background: #667eea;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}
.vehicle-card-cta:hover { background: #4f46e5; }

/* ---- Vehicle name badges (replaces inline styles) ---- */
.vehicle-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    font-weight: 700;
}
.vehicle-badge--popular { background: #e0e7ff; color: #4f46e5; }
.vehicle-badge--premium { background: #fdf4ff; color: #7c3aed; }

/* ---- Fare-quote button under the fare table (replaces inline styles) ---- */
.fare-quote-cta { text-align: center; margin-top: 28px; }
.btn-fare-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #667eea;
    color: white;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
}
.btn-fare-quote:hover { background: #4f46e5; }

/* ---- Tight-top body section (replaces inline padding) ---- */
.route-section--tight-top { padding-top: 20px; padding-bottom: 0; }

/* ---- Related-route cards (replaces inline link reset) ---- */
.related-card { text-decoration: none; color: inherit; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .why-shergaon-grid { grid-template-columns: repeat(2, 1fr); }
    .vehicle-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .why-shergaon-grid { grid-template-columns: 1fr; }
    .vehicle-cards-grid { grid-template-columns: 1fr; }
    .roundtrip-advisory { flex-direction: column; gap: 12px; padding: 20px; }
}
@media (max-width: 480px) {
    .vehicle-card-header { flex-direction: column; gap: 8px; }
    .vehicle-fare { text-align: left; }
}
