/* ==========================================================================
   INNER PAGE STYLES — shared by every page that isn't the homepage
   (About, How It Works, Locations, Vehicle Makes, Reviews, FAQ, Contact,
   Repair Estimate, No Insurance Accident, Blog, Privacy, Terms).
   ========================================================================== */

.page-hero {
    padding: 160px 20px 60px;
    text-align: center;
    background: var(--bg-card);
    border-bottom: 1px solid var(--glass-border);
}
.page-hero h1 {
    font-family: var(--font-head) !important;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}
.page-hero p {
    color: var(--text-gray);
    max-width: 640px;
    margin: 0 auto;
    font-size: 16px;
}
@media(max-width: 768px) {
    .page-hero { padding: 130px 20px 40px; }
    .page-hero h1 { font-size: 30px; }
}

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
    font-family: var(--font-head) !important;
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; color: var(--text-gray); }
.prose ul { margin: 0 0 16px 20px; list-style: disc; color: var(--text-gray); }
.prose ul li { margin-bottom: 8px; }
.prose a { color: var(--neon-lime); font-weight: 600; text-decoration: underline; }

/* --- Simple info/contact cards (Contact, Locations) --- */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
@media(min-width: 768px) {
    .info-grid { grid-template-columns: repeat(3, 1fr); }
}
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}
.info-card .icon { font-size: 32px; margin-bottom: 12px; }
.info-card h3 { font-family: var(--font-head) !important; font-size: 18px; margin-bottom: 8px; }
.info-card p { color: var(--text-gray); font-size: 14.5px; }
.info-card a { color: var(--neon-lime); font-weight: 700; }

/* --- Map embed wrapper (Locations, Contact) --- */
.map-embed {
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

/* --- Simple grid of text links (Vehicle Makes / city lists) --- */
.link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}
@media(min-width: 768px) {
    .link-grid { grid-template-columns: repeat(4, 1fr); }
}
.link-grid a {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 600;
    color: var(--text-white);
    transition: 0.2s;
}
.link-grid a:hover { border-color: var(--neon-lime); color: var(--neon-lime); }

/* --- Simple contact form (Contact page — static markup, no backend wired yet) --- */
.contact-form {
    max-width: 560px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--bg-card);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--neon-lime);
    background: #fff;
}

/* --- Simple review card list (Reviews page) --- */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.review-card .stars { color: #f5b400; margin-bottom: 8px; }
.review-card p { color: var(--text-gray); margin-bottom: 10px; }
.review-card .reviewer { font-weight: 700; font-size: 14px; }

/* --- Blog post list (Blog index page) --- */
.blog-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.blog-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: 0.2s;
}
.blog-card:hover { border-color: var(--neon-lime); transform: translateY(-3px); }
.blog-card .blog-date { font-size: 13px; color: var(--text-gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card h3 { font-family: var(--font-head) !important; font-size: 22px; margin: 8px 0 10px; color: var(--text-white); }
.blog-card p { color: var(--text-gray); font-size: 15px; margin: 0; }
