/* ===== CSS VARIABLES & RESET ===== */
:root {
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-200: #fed7aa;
    --orange-300: #fdba74;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7e22ce;
    --purple-800: #6b21a8;
    --purple-900: #581c87;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: 0.9375rem;
}

#search-bar .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
   
}

#search-bar{
    max-width: 60%;
}

.container {
    /* width: 100%; */
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--purple-600);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--purple-700);
}

.btn-outline {
    border: 2px solid var(--purple-500);
    color: var(--purple-600);
    background: transparent;
}

.btn-outline:hover {
    background: var(--purple-50);
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge-promo {
    background: var(--orange-500);
    color: var(--white);
}

.badge-inventory {
    background: var(--purple-100);
    color: var(--purple-700);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-500);
    box-shadow: 0 0 0 3px var(--purple-100);
}

.privacy-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

.privacy-consent input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex: 0 0 auto;
}

.privacy-consent a {
    color: var(--purple-600);
    text-decoration: underline;
}

/* ===== ALERTS ===== */
.alert {
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9375rem;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(270deg, var(--purple-900) 0%, var(--purple-700) 40%, var(--orange-600) 100%);
    padding-top: 10px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    max-height: 150px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    position: relative;
}

#logo {
    max-height: 90px;
    width: auto;
    object-fit: contain;
    /* Glassmorphism icon treatment */
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-lg);
    padding: 10px 18px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 0 20px rgba(249, 115, 22, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
}

#logo:hover {
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 30px rgba(168, 85, 247, 0.2);
    transform: translateY(-1px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-600);
    font-weight: 800;
    font-size: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.header-contact {
    position: absolute;
    right: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.header-contact-item:hover {
    color: var(--orange-200);
}

.header-contact-icon {
    font-size: 0.75rem;
}

/* ===== HERO ===== */
.hero .container {
    background: linear-gradient(270deg, var(--purple-900) 0%, var(--purple-700) 40%, var(--orange-600) 100%);
    color: var(--white);
    /* padding: 3.5rem 0 4rem; */
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 0rem;
    padding-right: 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: var(--orange-300);
}

.hero h4 {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== SEARCH BAR ===== */
.search-section {
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

.search-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.search-input-wrap {
    flex: 1;
    position: relative;
}

.search-input-wrap input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.search-input-wrap input:focus {
    outline: none;
    border-color: var(--orange-500);
}

.search-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.125rem;
    opacity: 0.5;
}

/* ===== FILTER PANEL ===== */
.filter-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 1.25rem;
    position: sticky;
    top: 80px;
}

.filter-panel h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--orange-200);
}

.filter-group {
    margin-bottom: 1.25rem;
}

.filter-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.filter-group select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 0.875rem;
}

.filter-group input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 0.875rem;
}

.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.filter-actions .btn {
    width: 100%;
    font-size: 0.875rem;
    padding: 0.5rem;
}

/* ===== MAIN BODY LAYOUT ===== */
.main-body {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    align-items: stretch;
}

/* ===== INVENTORY SECTION ===== */
.inventory-section {
    padding: 1rem 0 3rem;
    flex: 1;
    max-width: 80%;
}

.inventory-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.inventory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.inventory-count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== VEHICLE GRID ===== */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.loading-state,
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-500);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--orange-500);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.error-state {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    color: #991b1b;
}

/* ===== VEHICLE CARD ===== */
.vehicle-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple-200);
}

.vehicle-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--gray-100);
}

.vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vehicle-card:hover .vehicle-card-image img {
    transform: scale(1.05);
}

.vehicle-card-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.vehicle-card-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.vehicle-card-variant {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.vehicle-card-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--orange-600);
    margin-bottom: 0.75rem;
}

.vehicle-card-price.old-price {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-decoration: line-through;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.vehicle-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.vehicle-card-spec {
    font-size: 0.75rem;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.vehicle-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}

.vehicle-card-dealer {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.vehicle-card-inquire {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--purple-600);
}

.vehicle-card-inquire:hover {
    color: var(--orange-600);
}

/* ===== VEHICLE DETAIL MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 1rem;
    animation: fadeIn 0.2s;
}

.modal-overlay.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.25s;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 10;
    color: var(--gray-600);
}

.modal-close:hover {
    background: var(--gray-100);
}

.modal-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-body {
    padding: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.modal-variant {
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.modal-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--orange-600);
    margin-bottom: 1rem;
}

.modal-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.modal-spec-item {
    background: var(--gray-50);
    padding: 0.625rem 0.875rem;
    border-radius: var(--radius);
}

.modal-spec-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray-400);
    font-weight: 600;
}

.modal-spec-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.modal-section {
    margin-bottom: 1.25rem;
}

.modal-section h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--purple-700);
    margin-bottom: 0.5rem;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.modal-tag {
    font-size: 0.8125rem;
    background: var(--purple-50);
    color: var(--purple-700);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    border: 1px solid var(--purple-100);
}

.modal-tag-finance {
    background: var(--orange-50);
    color: var(--orange-700);
    border-color: var(--orange-200);
}

.modal-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.modal-disclaimer {
    background: var(--purple-50);
    border: 1px solid var(--purple-100);
    border-radius: var(--radius);
    padding: 0.875rem;
    font-size: 0.8125rem;
    color: var(--purple-800);
    margin-bottom: 1.25rem;
}

/* ===== LEAD FORM ===== */
.lead-form {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.lead-form h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.lead-form-subtitle {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.lead-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.lead-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* ===== NEWS SECTION ===== */
.news-section {
    width: 22%;
    min-width: 220px;
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    max-height: calc(100vh - 220px);
}

.news-section .news-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.news-list::-webkit-scrollbar {
    width: 8px;
}

.news-list::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.2);
    border-radius: 999px;
}

.news-card {
    margin: 0;
    width: 100%;
    min-height: 120px;
    padding: 0.85rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: linear-gradient(135deg, #9500ff 0%, #ff8000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #130d1b 50%, #0d0913 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(168, 85, 247, 0.18), transparent 36%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.16), transparent 30%);
    pointer-events: none;
}

.contact-form-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-section .contact-form-layout>* {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.contact-section h2,
.contact-section h3,
.contact-section p,
.contact-section label {
    color: var(--white);
}

.contact-section button,
.contact-section input,
.contact-section textarea {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-section button {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

.contact-section input,
.contact-section textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-section input:focus,
.contact-section textarea:focus {
    outline: none;
    border-color: var(--purple-500);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.18);
}

/* ===== CONTACT BANNER ===== */
.contact-banner {
    background: linear-gradient(135deg, var(--orange-500), var(--purple-600));
    color: var(--white);
    padding: 2.5rem 0;
}

.contact-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.contact-banner-text h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.375rem;
}

.contact-banner-text p {
    opacity: 0.9;
    font-size: 0.9375rem;
}

.contact-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.2s;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 2.5rem 0 1.5rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: block;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-section a,
.footer-section p {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
    color: var(--gray-400);
}

.footer-section a:hover {
    color: var(--orange-400);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .inventory-layout {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        position: static;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.25rem;
    }

    .header-contact {
        gap: 0.75rem;
    }

    .header-contact-item span:last-child {
        display: none;
    }

    .logo-tagline {
        display: none;
    }

    .hero {
        padding: 2.5rem 0 3rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-form-layout {
        grid-template-columns: 1fr;
    }

    .contact-section .contact-form-layout>* {
        padding: 1.25rem;
    }

    .contact-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .contact-btn {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .main-body {
        flex-direction: column;
    }

    .inventory-section {
        max-width: 100%;
    }

    .news-section {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .search-bar {
        flex-direction: column;
    }

    .search-bar .btn {
        width: 100%;
    }

    .lead-form-row {
        grid-template-columns: 1fr;
    }

    .modal-image {
        height: 200px;
    }

    .modal-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .lead-form-row {
        grid-template-columns: 1fr;
    }
}