/* =========================================================
   destination-pages.css  –  Shared styles for all taxi
   service destination pages (Dehradun, Delhi, Haridwar…)
   ========================================================= */

/* ── Hero strip ─────────────────────────────────────────── */
.dp-hero {
    background: #ffffff;
    color: #111827;
    padding: 2.5rem 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.dp-hero-inner {
    max-width: 860px;
    margin: 0 auto;
}

.dp-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    color: #111827;
}

.dp-hero p {
    margin-top: .75rem;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.65;
}

.dp-cta-row {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.dp-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    padding: .65rem 1.4rem;
    border-radius: .5rem;
    text-decoration: none;
    transition: opacity .2s;
}

.dp-btn-wa:hover {
    opacity: .88;
}

.dp-btn-call {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #6C5CE7;
    color: #fff;
    font-weight: 700;
    padding: .65rem 1.4rem;
    border-radius: .5rem;
    text-decoration: none;
    transition: opacity .2s;
}

.dp-btn-call:hover {
    opacity: .88;
}


/* ── Breadcrumb ─────────────────────────────────────────── */
.dp-breadcrumb {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: .6rem 1.5rem;
    font-size: .8rem;
    color: #64748b;
}

.dp-breadcrumb a {
    color: #4338ca;
    text-decoration: none;
}

.dp-breadcrumb a:hover {
    text-decoration: underline;
}

.dp-breadcrumb span {
    margin: 0 .4rem;
}

/* ── Section wrapper ────────────────────────────────────── */
.dp-main {
    max-width: 860px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

/* ── Section headings ───────────────────────────────────── */
.dp-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e1b4b;
    margin-top: 3rem;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #e8e8f5;
}

.dp-section-title::after {
    display: none;
}

/* ── Why-choose feature checklist ──────────────────── */
.dp-features {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 0;
}

.dp-feature-card {
    background: #f9f9fb;
    border: 1px solid #e8e8f0;
    border-radius: .5rem;
    padding: .85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .92rem;
    color: #374151;
    line-height: 1.5;
}

.dp-feature-card::before {
    content: '✓';
    font-size: 1rem;
    font-weight: 700;
    color: #6C5CE7;
    flex-shrink: 0;
    width: 1.2rem;
    text-align: center;
}

.dp-feature-card .dp-icon {
    display: none;
}

/* ── Fare table ─────────────────────────────────────────── */
.dp-table-wrap {
    overflow-x: auto;
    margin-top: 0;
    border-radius: .75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
}

.dp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
    background: #fff;
    border-radius: .75rem;
    overflow: hidden;
}

.dp-table thead tr {
    background: #4f46e5;
    color: #fff;
}

.dp-table th {
    padding: .85rem 1rem;
    text-align: left;
    font-weight: 600;
}

.dp-table tbody tr:nth-child(even) {
    background: #f8f7ff;
}

.dp-table tbody tr:hover {
    background: #eef0ff;
}

.dp-table td {
    padding: .75rem 1rem;
    border-bottom: 1px solid #e8e8f0;
    color: #374151;
}

.dp-table-note {
    font-size: .78rem;
    color: #6b7280;
    margin-top: .5rem;
}

/* ── Travel tip ────────────────────────────────── */
.dp-tip-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: .95rem;
    color: #374151;
    line-height: 1.7;
    margin-top: 0;
}

.dp-tip-box strong {
    color: #111827;
}

/* ── FAQ accordion ───────────────────────────────── */
.dp-faq {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 0;
}

.dp-faq details {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    overflow: hidden;
}

.dp-faq summary {
    padding: .85rem 1rem;
    cursor: pointer;
    font-weight: 500;
    color: #1e1b4b;
    font-size: .92rem;
    list-style: revert;
    user-select: none;
}

.dp-faq summary::-webkit-details-marker {
    color: #6C5CE7;
}

.dp-faq details[open] {
    border-color: #c7d2fe;
}

.dp-faq .faq-body {
    padding: .5rem 1rem 1rem 2rem;
    font-size: .88rem;
    color: #4b5563;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
}

/* ── Related routes grid ────────────────────────────── */
.dp-routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: .85rem;
    margin-top: 0;
}

.dp-route-card {
    display: block;
    background: #eef0fb;
    border: none;
    border-radius: .75rem;
    padding: 1rem 1.1rem;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: none;
}

.dp-route-card:hover {
    background: #e0e4f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(67, 56, 202, .12);
}

.dp-route-card h3 {
    font-size: .92rem;
    font-weight: 700;
    color: #3730a3;
}

.dp-route-card p {
    font-size: .8rem;
    color: #6b7280;
    margin-top: .3rem;
}

/* ── Footer ─────────────────────────────────────────────── */
.dp-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 1.5rem;
    text-align: center;
    font-size: .82rem;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 640px) {
    .dp-hero h1 {
        font-size: 1.5rem;
    }

    .dp-routes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dp-main {
        padding: 1.5rem 1rem 3rem;
    }

    /* Compact header buttons on mobile */
    .dp-btn-wa,
    .dp-btn-call {
        padding: .4rem .75rem;
        font-size: .78rem;
        gap: .25rem;
    }

    /* Fare table: compact all 4 columns to fit on mobile without side scroll */
    .dp-table-wrap {
        border-radius: .5rem;
    }

    .dp-table {
        table-layout: fixed;
        width: 100%;
    }

    .dp-table th:first-child,
    .dp-table td:first-child {
        width: 36%;
    }

    .dp-table th,
    .dp-table td {
        padding: .5rem .35rem;
        font-size: .75rem;
        word-break: break-word;
    }
}

/* Very small phones: route cards go 1-column */
@media (max-width: 400px) {
    .dp-routes-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Floating WhatsApp FAB ────────────────────────── */
.dp-float-wa {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
    transition: transform .2s, box-shadow .2s;
    overflow: hidden;
    /* hide text */
    font-size: 0;
    color: transparent;
}

.dp-float-wa::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / 26px no-repeat;
}

.dp-float-wa:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .3);
}