/* FFL Dealer Directory Styles */
/* Uses design tokens from shared.css */

/* =============================================
   Search Hero
   ============================================= */
.search-hero {
    padding: 160px 0 80px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.search-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
}

.search-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.search-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 800;
}

.search-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

/* =============================================
   Search Bar
   ============================================= */
.search-bar {
    display: flex;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    padding: 8px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    background: transparent;
}

.search-bar input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.search-bar select {
    width: 120px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    font-size: 0.875rem;
    background: var(--gray-50);
}

.search-bar button {
    padding: 14px 28px;
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.search-bar button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

/* =============================================
   State Grid
   ============================================= */
.state-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 60px 0;
}

.state-card {
    display: block;
    padding: 20px 24px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
}

.state-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.state-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.state-card .dealer-count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* =============================================
   Dealer Cards
   ============================================= */
.dealer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.dealer-card {
    display: block;
    padding: 24px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
}

.dealer-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.dealer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.dealer-card-header h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

.dealer-address {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 6px;
}

.dealer-phone {
    font-size: 0.9375rem;
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 12px;
}

.dealer-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

.dealer-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* =============================================
   Badges
   ============================================= */
.dealer-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.dealer-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.badge-claimed {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
}

.badge-class3 {
    background: rgba(139, 92, 246, 0.1);
    color: #6d28d9;
}

.badge-featured {
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
}

.fee-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--accent-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.distance-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

/* =============================================
   Stars / Ratings
   ============================================= */
.stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    color: #f59e0b;
}

.stars-sm .star { width: 14px; height: 14px; }
.stars-md .star { width: 18px; height: 18px; }
.stars-lg .star { width: 24px; height: 24px; }

.star { fill: currentColor; }
.star-empty { color: var(--gray-300); }
.star-half { color: #f59e0b; }

.dealer-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-count {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* =============================================
   Profile Page
   ============================================= */
.profile-header {
    padding: 160px 0 60px;
    background: var(--gradient-primary);
    position: relative;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
}

.profile-header-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.profile-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 800;
}

.profile-header .profile-location {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
}

.profile-header .profile-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.profile-header .dealer-badge {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.profile-body {
    padding: 48px 0 80px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Key info cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.info-card {
    padding: 20px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    text-align: center;
}

.info-card .info-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.info-card .info-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.info-card .info-value.open { color: #047857; }
.info-card .info-value.closed { color: #b91c1c; }

/* Profile sections */
.profile-section {
    margin-bottom: 40px;
}

.profile-section h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
}

/* Services grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Hours table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--gray-100);
}

.hours-table td {
    padding: 10px 0;
    font-size: 0.9375rem;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--gray-700);
    width: 120px;
}

.hours-table td:last-child {
    color: var(--gray-600);
}

.hours-table .today td {
    color: var(--accent-dark);
    font-weight: 600;
}

.hours-table .closed-day td:last-child {
    color: var(--gray-400);
}

/* Map container */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gray-100);
    margin-bottom: 16px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =============================================
   Reviews Section
   ============================================= */
.review-summary {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.review-avg {
    text-align: center;
    min-width: 100px;
}

.review-avg .avg-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.review-avg .avg-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.rating-bars {
    flex: 1;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.rating-bar-label {
    font-size: 0.8125rem;
    color: var(--gray-600);
    width: 16px;
    text-align: right;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.rating-bar-count {
    font-size: 0.75rem;
    color: var(--gray-400);
    width: 24px;
}

/* Individual reviews */
.review-card {
    padding: 20px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--gray-900);
}

.review-date {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.review-text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.dealer-response {
    margin-top: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

.dealer-response-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 6px;
}

/* Review form modal */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.review-modal.active { display: flex; }

.review-modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.star-select {
    display: flex;
    gap: 4px;
    cursor: pointer;
}

.star-select .star-btn {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-300);
    padding: 0;
    transition: color 0.15s;
}

.star-select .star-btn.active,
.star-select .star-btn:hover { color: #f59e0b; }

.star-select .star-btn svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* =============================================
   Claim CTA
   ============================================= */
.claim-cta {
    padding: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    text-align: center;
    margin-top: 48px;
}

.claim-cta h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.claim-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

/* =============================================
   Nearby Dealers
   ============================================= */
.nearby-dealers {
    display: grid;
    gap: 12px;
}

.nearby-dealer-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.nearby-dealer-link:hover {
    border-color: var(--accent);
    background: var(--gray-50);
}

.nearby-dealer-link .nearby-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.9375rem;
}

.nearby-dealer-link .nearby-dist {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* =============================================
   Search Results
   ============================================= */
.search-results {
    padding: 40px 0 80px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.results-count {
    font-size: 1rem;
    color: var(--gray-600);
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-500);
}

.no-results h3 {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 8px;
}

/* =============================================
   Breadcrumbs
   ============================================= */
.breadcrumbs {
    padding: 12px 0;
    margin-bottom: 8px;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.875rem;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 4px;
    color: var(--gray-400);
}

.breadcrumbs li:last-child::after { content: ''; }

.breadcrumbs a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumbs a:hover { text-decoration: underline; }

.breadcrumb-current {
    color: var(--gray-500);
}

/* =============================================
   Pagination
   ============================================= */
.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination ul {
    list-style: none;
    display: flex;
    gap: 4px;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.pagination li a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.pagination li.active a {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.pagination .ellipsis {
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: var(--gray-400);
}

/* =============================================
   Claim Page
   ============================================= */
.claim-hero {
    padding: 160px 0 60px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.claim-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 800;
}

.claim-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 60px 0;
}

.benefit-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
}

.benefit-card .benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.steps-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.claim-form-section {
    padding: 60px 0 80px;
    max-width: 640px;
    margin: 0 auto;
}

/* =============================================
   Dealer Portal
   ============================================= */
.portal-nav {
    display: flex;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 2px solid var(--gray-100);
    margin-bottom: 32px;
}

.portal-nav a {
    padding: 10px 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.portal-nav a:hover { background: var(--gray-50); color: var(--gray-900); }
.portal-nav a.active { background: rgba(59, 130, 246, 0.08); color: var(--accent); }

.portal-welcome {
    padding: 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    color: var(--white);
    margin-bottom: 32px;
}

.portal-welcome h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.completeness-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    margin-top: 16px;
    overflow: hidden;
}

.completeness-fill {
    height: 100%;
    background: var(--success);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.portal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.portal-stat {
    padding: 24px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    text-align: center;
}

.portal-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
}

.portal-stat .stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Profile editor sections */
.editor-section {
    margin-bottom: 40px;
    padding: 32px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
}

.editor-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.hours-editor {
    display: grid;
    gap: 12px;
}

.hours-row {
    display: grid;
    grid-template-columns: 100px 1fr 1fr auto;
    gap: 12px;
    align-items: center;
}

.hours-row label {
    font-weight: 600;
    margin-bottom: 0;
}

.hours-row input[type="time"] {
    padding: 10px;
}

.services-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.services-checkboxes label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
}

.services-checkboxes input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* =============================================
   City Grid
   ============================================= */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    padding: 40px 0;
}

.city-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.city-link:hover {
    border-color: var(--accent);
    background: var(--gray-50);
}

.city-link .city-name {
    font-weight: 500;
    color: var(--gray-800);
    font-size: 0.9375rem;
}

.city-link .city-count {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

/* =============================================
   Section Headers
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured section */
.featured-section {
    padding: 60px 0;
    background: var(--gray-50);
}

/* FAQ section */
.faq-section {
    padding: 60px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gray-400);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding: 0 0 20px;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.active .faq-answer { display: block; }

/* =============================================
   Admin Styles
   ============================================= */
.admin-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--gray-200);
}

.admin-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition-fast);
}

.admin-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 12px 16px;
    background: var(--gray-50);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9375rem;
}

.status-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.status-pending { background: rgba(245, 158, 11, 0.1); color: #b45309; }
.status-approved { background: rgba(16, 185, 129, 0.1); color: #047857; }
.status-rejected { background: rgba(239, 68, 68, 0.1); color: #b91c1c; }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
    .state-grid { grid-template-columns: repeat(3, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-grid { grid-template-columns: 1fr; }
    .info-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
        padding: 12px;
    }

    .search-bar select { width: 100%; }

    .state-grid { grid-template-columns: repeat(2, 1fr); }
    .dealer-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .info-cards { grid-template-columns: 1fr; }
    .portal-stats { grid-template-columns: 1fr; }
    .hours-row { grid-template-columns: 80px 1fr; }
    .services-checkboxes { grid-template-columns: 1fr; }

    .review-summary { flex-direction: column; text-align: center; }

    .claim-cta { padding: 32px 24px; }
}
