/* ═══════════════════════════════════════════════
   Camel Towing — vehicles.css
   Vehicles We Buy page styles.
   ═══════════════════════════════════════════════ */

/* ─── Hero ─── */
.vwb-hero {
    padding: 140px 0 80px;
    background: linear-gradient(168deg, var(--white) 0%, var(--pink-light) 100%);
}
.vwb-hero h1 {
    font-size: clamp(40px, 5vw, 68px);
    margin-bottom: 20px;
    line-height: 1.05;
}
.vwb-hero .highlight {
    color: var(--pink);
    position: relative;
    display: inline-block;
}
.vwb-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 8px;
    background: var(--pink);
    opacity: 0.15;
    border-radius: 4px;
}
.vwb-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 580px;
    margin-bottom: 32px;
}

/* ─── Shared Section ─── */
.vwb-section {
    padding: 100px 0;
}
.vwb-section:nth-child(even) {
    background: var(--light-gray);
}
.vwb-section h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    margin-bottom: 16px;
}
.vwb-section-desc {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 48px;
}

/* ─── Body Styles Grid ─── */
.vwb-body-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.vwb-body-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.vwb-body-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(233,30,140,0.1);
}
.vwb-body-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--pink-light);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--pink);
}
.vwb-body-card h3 {
    font-size: 18px;
    text-transform: none;
    margin-bottom: 8px;
}
.vwb-body-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── Conditions Grid ─── */
.vwb-conditions-section {
    background: var(--white) !important;
}
.vwb-conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.vwb-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: var(--pink-subtle);
    border: 1px solid rgba(233,30,140,0.05);
    border-radius: 14px;
    transition: transform 0.3s, border-color 0.3s;
}
.vwb-condition-item:hover {
    transform: translateY(-2px);
    border-color: rgba(233,30,140,0.15);
}
.vwb-condition-check {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--pink);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: #fff;
}
.vwb-condition-item strong {
    font-size: 15px;
    color: var(--dark);
    display: block;
    margin-bottom: 4px;
}
.vwb-condition-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* ─── Mid CTA ─── */
.vwb-mid-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff;
}
.vwb-mid-cta h2 {
    font-size: clamp(28px, 3vw, 44px);
    color: #fff;
    margin-bottom: 16px;
}
.vwb-mid-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ─── Makes & Models ─── */
.vwb-makes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.vwb-make-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.vwb-make-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.vwb-make-card h3 {
    font-size: 18px;
    text-transform: none;
    color: var(--pink);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--pink-light);
}
.vwb-models {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.vwb-model-chip {
    display: inline-block;
    padding: 5px 12px;
    background: var(--light-gray);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
}
.vwb-makes-note {
    margin-top: 40px;
    padding: 24px 32px;
    background: var(--pink-light);
    border-radius: 14px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    text-align: center;
}
.vwb-makes-note a {
    color: var(--pink);
    font-weight: 700;
}
.vwb-makes-note a:hover {
    text-decoration: underline;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .vwb-body-grid { grid-template-columns: repeat(2, 1fr); }
    .vwb-makes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .vwb-body-grid { grid-template-columns: 1fr; }
    .vwb-conditions-grid { grid-template-columns: 1fr; }
    .vwb-makes-grid { grid-template-columns: 1fr; }
}
