/**
 * Main CSS file for Underten Auto Sales theme
 */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1E1E1E;
    line-height: 1.6;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* ===== COLOR VARIABLES ===== */
:root {
    --primary-dark: #0F0F0F;
    --primary-darker: #050505;
    --accent-blue: #C9A14A;
    --accent-blue-light: #E5C97A;
    --accent-orange: #B8963A;
    --light-grey: #F8F6F1;
    --medium-grey: #EAE7DF;
    --border-grey: #DDD8CE;
    --pure-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #8A8A8A;
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.18);
    --shadow-hover: 0 15px 40px rgba(201,161,74,0.25);
    --success-green: #2E7D32;
    --error-red: #C62828;
}

.page-hero-bg {
    background: linear-gradient(135deg,#0F0F0F 0%, #0A0A0A 60%, #C9A14A 120%)
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn .arrow {
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(5px);
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--pure-white);
    box-shadow: 0 4px 15px rgba(0,86,210,0.3);
}

.btn-primary:hover {
    background-color: var(--accent-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,86,210,0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--pure-white);
}

.btn-secondary:hover {
    background-color: var(--pure-white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.btn-outline:hover {
    background-color: var(--accent-blue);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.btn-outline-light:hover {
    background-color: var(--pure-white);
    color: var(--primary-dark);
}

.btn-light {
    background-color: var(--pure-white);
    color: var(--accent-blue);
}

.btn-light:hover {
    background-color: var(--light-grey);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--pure-white);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.site-header.sticky {
    padding: 10px 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent-blue);
    font-weight: 700;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    transition: color 0.3s;
    position: relative;
}

.nav-menu > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
    color: var(--accent-blue);
}

.nav-menu > li > a:hover:after,
.nav-menu > li.current-menu-item > a:after {
    width: 100%;
}

/* CTA Button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-blue);
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 20px;
    text-decoration-line: none;
}

.nav-cta:hover {
    background: var(--accent-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,86,210,0.3);
}

.nav-cta .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.nav-cta:hover .arrow {
    transform: translateX(5px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-dark);
    color: white;
    padding: 70px 0 30px;
    margin-top: 60px;
}

/* Footer Main */
.footer-main {
    margin-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Company Info */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.footer-logo-text span {
    color: var(--accent-blue);
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.company-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
}

.contact-item .icon {
    font-size: 1.2rem;
    width: 24px;
}

.contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: white;
}

/* Footer Titles */
.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-blue);
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-menu a:hover {
    color: white;
    transform: translateX(5px);
}

.view-all a {
    color: var(--accent-blue);
    font-weight: 600;
    margin-top: 10px;
}

.view-all a:hover {
    color: white;
}

/* Hours List */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 500;
    color: white;
}

.hours-list .time {
    color: rgba(255,255,255,0.8);
}

.hours-list .open {
    color: #90EE90 ;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

.separator {
    color: rgba(255,255,255,0.3);
}

/* ===== PAGE HERO SECTION ===== */
.page-hero {
    position: relative;
    padding-top: 80px;
}

.page-hero-sm {
    min-height: 300px;
}

.page-hero-bg {
    min-height: 60dvh;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

.page-hero-sm .page-hero-bg {
    min-height: 250px;
}

.page-hero-content {
    text-align: center;
    color: white;
    padding: 60px 0;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 20px;
}

.page-hero-breadcrumb {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.page-hero-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.page-hero-breadcrumb a:hover {
    color: var(--accent-blue);
}

.desktop-hero-stats {
    display: flex;
}

.mobile-hero-stats {
    display: none;
}

/* Adjust main content padding for pages with hero */
.inventory-page,
.contact-page,
.appraisal-page,
.sell-car-page,
.finance-calculator-page,
.single-vehicle-page {
    padding-top: 0;
}

/* ===== PAGE TITLES ===== */
.page-title {
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
}

/* ===== ALERTS ===== */
.alert {
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-weight: 500;
}

.alert-success {
    background: #E8F5E9;
    color: var(--success-green);
    border: 1px solid #A5D6A7;
}

.alert-error {
    background: #FFEBEE;
    color: var(--error-red);
    border: 1px solid #FFCDD2;
}

/* Calculator Tabs - Clutch Style */
.calc-tabs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
}

.calc-tab {
    background: transparent;
    border: none;
    padding: 0.75rem 0.25rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.calc-tab:hover {
    color: #1f2937;
}

.calc-tab.active {
    color: #1f2937;
    font-weight: 600;
}

.calc-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 3px 3px 0 0;
}

/* ===== INVENTORY PAGE ===== */
.inventory-page {
    padding: 140px 0 60px;
}

.inventory-filters {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.filter-group select,
.filter-group input {
    padding: 12px 15px;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.filter-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 10px;
}

.inventory-sort {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.inventory-sort select {
    padding: 10px 20px;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
}

/* ===== VEHICLE GRID ===== */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.vehicle-card {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid var(--border-grey);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.vehicle-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

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

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

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.vehicle-details {
    padding: 25px;
}

.vehicle-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.vehicle-specs span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.vehicle-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin: 15px 0;
}

/* ===== PAGINATION ===== */
.pagination {
    margin: 50px 0;
    text-align: center;
}

.pagination ul {
    display: inline-flex;
    list-style: none;
    gap: 8px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    font-weight: 500;
}

.pagination .current {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

.pagination a:hover {
    background: var(--light-grey);
    border-color: var(--accent-blue);
}

/* ===== SINGLE VEHICLE PAGE ===== */
.single-vehicle-page {
    padding: 140px 0 60px;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.vehicle-title {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.vehicle-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.sold-badge {
    background: var(--error-red);
    color: white;
    padding: 10px 30px;
    font-size: 1.5rem;
    font-weight: 700;
    transform: rotate(-5deg);
    position: absolute;
    top: 100px;
    right: 20px;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.vehicle-gallery-section {
    margin-bottom: 40px;
}

.vehicle-gallery-main {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.vehicle-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-thumb {
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    opacity: 1;
    border-color: var(--accent-blue);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.vehicle-specs-panel {
    background: var(--light-grey);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.vehicle-specs-panel h3 {
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-grey);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table th,
.specs-table td {
    padding: 15px;
    text-align: left;
}

.specs-table th {
    font-weight: 600;
    color: var(--primary-dark);
    width: 40%;
}

.vehicle-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vehicle-cta-box {
    background: var(--light-grey);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.vehicle-cta-box h4 {
    color: var(--accent-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.vehicle-cta-box p {
    margin-bottom: 25px;
    color: var(--text-muted);
}

.vehicle-features {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.vehicle-features h3 {
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.features-list ul {
    columns: 2;
    list-style: none;
    margin: 0;
    padding: 0;
}

.features-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.features-list li:before {
    content: "✓";
    color: var(--accent-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.vehicle-description {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-grey);
}

.vehicle-description h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 140px 0 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-container,
.contact-info-container {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-grey);
}

.contact-form-container h2,
.contact-info-container h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-grey);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--light-grey);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: var(--pure-white);
    box-shadow: 0 0 0 3px rgba(0,86,210,0.1);
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    color: var(--accent-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hours-list div {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.hours-list span {
    font-weight: 600;
    min-width: 100px;
    display: inline-block;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: white;
    transform: translateY(-3px);
}

.map-section {
    margin-top: 40px;
}

.map-section h2 {
    margin-bottom: 25px;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== APPRAISAL PAGE ===== */
.appraisal-page,
.sell-car-page,
.finance-calculator-page {
    padding: 140px 0 60px;
}

.appraisal-intro,
.sell-car-intro {
    text-align: center;
    max-width: unset;
    margin: 0 auto 50px;
}

.appraisal-intro h2,
.sell-car-intro h2 {
    margin-bottom: 20px;
}

.appraisal-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    background: var(--light-grey);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

/* ===== FORM STYLES ===== */
.form-section {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid var(--border-grey);
}

.form-section h3 {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-grey);
    color: var(--primary-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.half {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-grey);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--light-grey);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: var(--pure-white);
    box-shadow: 0 0 0 3px rgba(0,86,210,0.1);
}

.form-group small {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

/* ===== SELL CAR PAGE ===== */
.sell-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    background: var(--light-grey);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.radio-group {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.sell-car-faq {
    margin-top: 60px;
    padding: 40px;
    background: var(--light-grey);
    border-radius: 16px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h4 {
    color: var(--accent-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* ===== FINANCE CALCULATOR ===== */
.calculator-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.calculator-form,
.calculator-results {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-grey);
}

.calculator-form h2,
.calculator-results h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.input-range {
    margin-top: 10px;
}

.input-range input[type="range"] {
    width: 100%;
    margin: 5px 0;
    height: 6px;
    background: var(--border-grey);
    border-radius: 3px;
}

.input-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-blue);
    border-radius: 50%;
    cursor: pointer;
}

.result-card {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-grey);
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 600;
    color: var(--primary-dark);
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.breakdown-chart {
    margin: 30px 0;
}

.chart-bar {
    height: 30px;
    background: var(--border-grey);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.chart-fill {
    height: 100%;
    background: var(--accent-blue);
    transition: width 0.3s;
}

.breakdown-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.calculator-cta {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-grey);
}

.calculator-cta p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.calculator-disclaimer {
    text-align: center;
    color: var(--text-muted);
    margin: 20px 0;
}

.finance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.finance-card {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s;
}

.finance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.finance-card h4 {
    color: var(--accent-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.finance-card p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.finance-card ul {
    list-style: none;
}

.finance-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.finance-card ul li:before {
    content: "✓";
    color: var(--success-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== NO VEHICLES MESSAGE ===== */
.no-vehicles {
    text-align: center;
    padding: 60px;
    background: var(--light-grey);
    border-radius: 16px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* ===== TEXT UTILITIES ===== */
.text-center {
    text-align: center;
}

/* ===== HOMEPAGE SPECIFIC STYLES ===== */
.mobile-hero-section {
    display: none;
}

.home .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.home .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.home .hero-content {
    max-width: 700px;
    color: white;
    position: relative;
    z-index: 2;
}

.home .hero-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.home .hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.home .hero-title span {
    color: var(--accent-blue);
}

.home .hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.home .hero-buttons {
    display: flex;
    gap: 20px;
}

.home .hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    z-index: 10;
}

.home .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.home .stat-item {
    text-align: center;
}

.home .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 5px;
}

.home .stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home .search-section {
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.home .search-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

.home .search-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.home .search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 15px;
    align-items: end;
}

.home .search-field {
    display: flex;
    flex-direction: column;
}

.home .search-field label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.home .search-select {
    padding: 12px 15px;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    cursor: pointer;
}

.home .search-select:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.home .search-button-field {
    min-width: 200px;
}

.home .usp-section {
    padding: 80px 0;
    background: var(--light-grey);
}

.home .usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.home .usp-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    text-align: left;
}

.home .usp-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.home .usp-icon {
    width: 70px;
    height: 70px;
    background: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: var(--accent-blue);
}

.home .usp-card:hover .usp-icon {
    background: var(--accent-blue);
    color: white;
}

.home .usp-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.home .usp-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.home .card-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.home .card-link:hover {
    gap: 10px;
}

.home .featured-section {
    padding: 80px 0;
}

.home .featured-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.home .tab-btn {
    padding: 10px 25px;
    border: 1px solid var(--border-grey);
    background: white;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
}

.home .tab-btn:hover,
.home .tab-btn.active {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

.home .vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.home .vehicle-badge.new {
    background: var(--success-green);
    color: white;
}

.home .vehicle-badge.certified {
    background: var(--accent-blue);
    color: white;
}

.home .vehicle-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.home .vehicle-actions .btn {
    flex: 1;
    padding: 10px;
}

.home .section-footer {
    text-align: center;
    margin-top: 40px;
}

.home .services-section {
    padding: 80px 0;
    background: var(--light-grey);
}

.home .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home .service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.home .service-card-large {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
    color: white;
}

.home .service-card-large h3,
.home .service-card-large p {
    color: white;
}

.home .service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.home .service-features {
    list-style: none;
    margin: 20px 0;
}

.home .service-features li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.home .why-choose-section {
    padding: 80px 0;
}

.home .why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-height: 100vh;
}

.home .features-list {
    margin: 40px 0;
}

.home .feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-grey);
    border-radius: 12px;
}

.home .feature-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: var(--shadow-md);
}

.home .feature-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-blue);
    opacity: 0.3;
    line-height: 1;
}

.home .feature-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.home .feature-text p {
    color: var(--text-muted);
    margin: 0;
}

.home .why-choose-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.home .why-choose-stats .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-blue);
}

.home .why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.home .why-choose-image > img {
    height: 100%;
}

.home .experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent-blue);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
}

.home .experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.home .brands-section {
    padding: 60px 0;
    background: var(--light-grey);
    margin-top: 15%;
}

.home .brands-slider {
    overflow: hidden;
    position: relative;
}

.home .brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 40px;
}

.home .brand-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.home .testimonials-section {
    padding: 80px 0;
}

.home .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home .testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-grey);
}

.home .testimonial-card.featured {
    border: 2px solid var(--accent-blue);
    transform: scale(1.02);
}

.home .testimonial-rating {
    margin-bottom: 20px;
    color: #FFB800;
    font-size: 1.2rem;
}

.home .testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.home .cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
    color: white;
}

.home .cta-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.home .cta-wrapper h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.home .cta-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.home .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.home .blog-section {
    padding: 80px 0;
    background: var(--light-grey);
}

.home .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home .blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.home .blog-image {
    height: 200px;
    overflow: hidden;
}

.home .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home .blog-content {
    padding: 25px;
}

.home .blog-date {
    font-size: 0.85rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.home .blog-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.home .blog-title a {
    color: var(--primary-dark);
    text-decoration: none;
}

.home .blog-excerpt {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.home .read-more {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.home .newsletter-section {
    padding: 60px 0;
}

.home .newsletter-wrapper {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
    padding: 60px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.home .newsletter-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.home .newsletter-form {
    display: flex;
    gap: 10px;
    min-width: 400px;
}

.home .newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.home .newsletter-form button {
    padding: 15px 40px;
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.google-reviews-section {
    padding: 80px 0;
    background: var(--light-grey);
}

.google-reviews-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.google-rating-link {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
button.ButtonBase__ButtonContainer-sc-f8d413ed-3.icNsno.es-button-base-container.HeaderWriteReviewButton__WriteReviewButton-sc-26cedb39-1.dPDfzu.es-header-write-review-button{
	background-color: var(--accent-blue) !important;
}
.ffWxGF .ReviewVerifiedBadge__StyledVerifiedBadge-sc-65b01a5d-0 path:first-child {
    fill: var(--accent-blue) !important;
}
/* ===== WARRANTY SECTION ===== */
.warranty-section {
    padding: 80px 0;
    background: var(--pure-white);
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.warranty-card {
    background: var(--light-grey);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-grey);
    position: relative;
}

.warranty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.warranty-card.featured {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
    color: white;
    transform: scale(1.02);
}

.warranty-card.featured .warranty-icon {
    background: rgba(255,255,255,0.2);
}

.warranty-card.featured h3,
.warranty-card.featured .warranty-duration,
.warranty-card.featured .warranty-features li {
    color: white;
}

.warranty-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-orange);
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.warranty-icon {
    width: 80px;
    height: 80px;
    background: rgba(0,86,210,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
}

.warranty-card.featured .warranty-icon {
    background: rgba(255,255,255,0.15);
}

.warranty-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.warranty-duration {
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.warranty-card.featured .warranty-duration {
    color: rgba(255,255,255,0.9);
}

.warranty-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    padding-left: 20px;
}

.warranty-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.warranty-card.featured .warranty-features li {
    color: rgba(255,255,255,0.9);
}

.warranty-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.warranty-link:hover {
    gap: 8px;
}

.warranty-card.featured .warranty-link {
    color: white;
}

.warranty-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-grey);
}

.warranty-footer p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ===== BLOG PAGE STYLES ===== */
.blog-main-section {
    padding: 60px 0;
    background: var(--light-grey);
}

/* Featured Post */
.featured-post {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 50px;
    border: 1px solid var(--border-grey);
}

.featured-post-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
}

.featured-post-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.featured-post-category a {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-blue);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.featured-post-category a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.featured-post-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.featured-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.featured-post-meta a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.featured-post-meta a:hover {
    color: var(--accent-blue);
}

.featured-post-title {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-post-title a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.featured-post-title a:hover {
    color: var(--accent-blue);
}

.featured-post-excerpt {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Blog Categories Tabs */
.blog-categories-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.category-tab {
    padding: 12px 25px;
    background: var(--pure-white);
    border: 1px solid var(--border-grey);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
}

.category-tab:hover,
.category-tab.active {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,86,210,0.2);
}

/* Blog Content Wrapper */
.blog-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Filter Bar */
.blog-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: var(--pure-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-grey);
}

.search-box {
    flex: 1;
    max-width: 300px;
}

.search-box form {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0,86,210,0.1);
}

.search-box button {
    padding: 12px 20px;
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-box button:hover {
    background: var(--primary-dark);
}

.sort-options select {
    padding: 12px 20px;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--pure-white);
    cursor: pointer;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.blog-post-card {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid var(--border-grey);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.post-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.blog-post-card:hover .post-card-image img {
    transform: scale(1.1);
}

.post-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.post-card-category a {
    display: inline-block;
    padding: 5px 12px;
    background: var(--accent-blue);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-card-content {
    padding: 20px;
}

.post-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.post-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.post-card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-card-title a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.post-card-title a:hover {
    color: var(--accent-blue);
}

.post-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-grey);
}

.post-author-mini {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-author-mini img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.post-author-mini span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.read-more {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 8px;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin: 40px 0;
}

/* Instagram Feed */
.instagram-feed-section {
    padding: 80px 0;
    background: var(--pure-white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin: 40px 0;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,86,210,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    font-size: 1.1rem;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-follow {
    text-align: center;
    margin-top: 30px;
}

/* Sidebar Widgets */
.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-grey);
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-grey);
    position: relative;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-blue);
}

/* About Widget */
.about-widget .about-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.about-widget p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Newsletter Widget */
.newsletter-widget p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.sidebar-newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    margin-bottom: 10px;
}

.sidebar-newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

/* Popular Posts */
.popular-posts-list {
    list-style: none;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-grey);
}

.popular-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-post-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content {
    flex: 1;
}

.popular-post-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-post-content h4 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.popular-post-content h4 a:hover {
    color: var(--accent-blue);
}

.popular-post-content .post-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Categories List */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-grey);
}

.categories-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.categories-list a:hover {
    color: var(--accent-blue);
}

.categories-list .count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    display: inline-block;
    padding: 6px 12px;
    background: var(--light-grey);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: 1px solid var(--border-grey);
}

.tag-link:hover {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

/* Archive Select */
.archive-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    background: var(--pure-white);
    cursor: pointer;
}

.archive-select:focus {
    outline: none;
    border-color: var(--accent-blue);
}

/* Pagination */
.blog-pagination {
    margin-top: 40px;
}

.blog-pagination ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    background: var(--pure-white);
}

.blog-pagination .current {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

.blog-pagination a:hover {
    background: var(--light-grey);
    border-color: var(--accent-blue);
}

/* No Posts Found */
.no-posts-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    background: var(--pure-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.no-posts-found h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.no-posts-found p {
    color: var(--text-muted);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vehicle-gallery-main {
        height: 400px;
    }
    
    .home .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .home .usp-grid,
    .home .vehicle-grid,
    .home .services-grid,
    .home .testimonials-grid,
    .home .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 25px;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        border-top: 1px solid var(--border-grey);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu > li > a:after {
        display: none;
    }
    
    .nav-cta {
        margin: 25px 0 0 0;
        width: 100%;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid,
    .vehicle-details-grid,
    .calculator-main,
    .home .why-choose-grid,
    .home .newsletter-wrapper {
        grid-template-columns: 1fr;
    }
    
    .appraisal-benefits,
    .sell-steps,
    .finance-grid,
    .home .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vehicle-gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .home .hero-title {
        font-size: 3rem;
    }
    .warranty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-post-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-post-image {
        min-height: 300px;
    }
    
    .blog-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .calc-tabs {
        gap: 1rem;
    }
    .home .brands-section {
        margin-top: 90%;
    }
    .calc-tab {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .page-title { font-size: 2rem; }
    
    .vehicle-grid,
    .appraisal-benefits,
    .sell-steps,
    .finance-grid,
    .footer-grid,
    .home .usp-grid,
    .home .vehicle-grid,
    .home .services-grid,
    .home .testimonials-grid,
    .home .blog-grid,
    .home .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .filter-actions,
    .home .hero-buttons,
    .home .cta-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .vehicle-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .desktop-hero-stats{
        display: none;
    }
    .mobile-hero-section {
        position: relative;
        min-height: 70vh;
        display: flex;
        align-items: center;
        padding-top: 0px;
        justify-content: center;
    }
    .mobile-hero-stats{
        display: flex;
        margin-top: 80px;
    }
    .vehicle-title,
    .vehicle-price-large,
    .home .hero-title {
        font-size: 2rem;
    }
    
    .vehicle-gallery-main {
        height: 300px;
    }
    
    .vehicle-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-list ul {
        columns: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
    
    .separator {
        display: none;
    }
    
    .contact-info-container,
    .contact-form-container,
    .form-section,
    .calculator-form,
    .calculator-results,
    .home .search-wrapper,
    .home .newsletter-wrapper {
        padding: 25px;
        flex-direction: column;
        gap: 40px;
    }
    
    .home .search-grid {
        grid-template-columns: 1fr;
    }
    
    .home .search-button-field {
        min-width: auto;
    }
    
    .home .featured-tabs {
        flex-wrap: wrap;
    }
    
    .home .newsletter-form {
        min-width: 100%;
        flex-direction: column;
    }
    .page-hero-title {
        font-size: 2.2rem;
    }
    
    .page-hero-description {
        font-size: 1rem;
    }
    
    .page-hero-bg {
        min-height: 300px;
    }
    .google-reviews-feed {
        grid-template-columns: 1fr;
    }
    
    .rating-stars-large {
        font-size: 2rem;
    }
    
    .rating-value {
        font-size: 2.5rem;
    }
    .usp-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .warranty-grid {
        grid-template-columns: 1fr;
    }
    
    .warranty-card.featured {
        transform: scale(1);
    }
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-filter-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .featured-post-content {
        padding: 25px;
    }
    
    .featured-post-title {
        font-size: 1.5rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-categories-tabs {
        gap: 10px;
    }
    
    .category-tab {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .vehicle-gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 10px;
    }
    
    .benefit,
    .step,
    .home .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 15px;
    }
    .featured-post-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .post-card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-pagination ul {
        flex-wrap: wrap;
    }
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .btn,
    .filter-section,
    .vehicle-sidebar,
    .hero-section,
    .cta-section,
    .newsletter-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* ===== ENTRANCE ANIMATIONS & HOVER EFFECTS ===== */

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 161, 74, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(201, 161, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 161, 74, 0);
    }
}

/* ===== HERO ENTRANCE ANIMATIONS ===== */
/* Hero section elements - NO animation on hero section itself */
.home .hero-subtitle,
.home .hero-title,
.home .hero-description,
.home .hero-buttons {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.home .hero-subtitle {
    animation-delay: 0.1s;
}

.home .hero-title {
    animation-delay: 0.3s;
}

.home .hero-description {
    animation-delay: 0.5s;
}

.home .hero-buttons {
    animation-delay: 0.7s;
}

/* Hero stats entrance */
.home .hero-stats .stat-item {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: calc(0.9s + (var(--stat-index, 0) * 0.1s));
}

/* Page hero entrance (for inner pages) */
.page-hero .page-hero-title,
.page-hero .page-hero-description,
.page-hero .page-hero-breadcrumb {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.page-hero .page-hero-title {
    animation-delay: 0.1s;
}

.page-hero .page-hero-description {
    animation-delay: 0.3s;
}

.page-hero .page-hero-breadcrumb {
    animation-delay: 0.5s;
}

/* ===== CARD ENTRANCE ANIMATIONS (SCROLL REVEAL) ===== */

/* All cards start invisible */
.vehicle-card,
.usp-card,
.testimonial-card,
.blog-card,
.warranty-card,
.finance-card,
.benefit,
.step,
.blog-post-card,
.sidebar-widget,
.instagram-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Cards become visible when they have the 'visible' class (added via JavaScript) */
.vehicle-card.visible,
.usp-card.visible,
.testimonial-card.visible,
.blog-card.visible,
.warranty-card.visible,
.finance-card.visible,
.benefit.visible,
.step.visible,
.blog-post-card.visible,
.sidebar-widget.visible,
.instagram-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for grid items when they become visible */
.vehicle-card.visible {
    transition-delay: calc(var(--card-index, 0) * 0.05s);
}

.usp-card.visible {
    transition-delay: calc(var(--card-index, 0) * 0.05s);
}

.testimonial-card.visible {
    transition-delay: calc(var(--card-index, 0) * 0.05s);
}

.blog-card.visible {
    transition-delay: calc(var(--card-index, 0) * 0.05s);
}

.warranty-card.visible {
    transition-delay: calc(var(--card-index, 0) * 0.05s);
}

.finance-card.visible {
    transition-delay: calc(var(--card-index, 0) * 0.05s);
}

.benefit.visible {
    transition-delay: calc(var(--benefit-index, 0) * 0.05s);
}

.step.visible {
    transition-delay: calc(var(--step-index, 0) * 0.05s);
}

.blog-post-card.visible {
    transition-delay: calc(var(--post-index, 0) * 0.05s);
}

.sidebar-widget.visible {
    transition-delay: calc(var(--widget-index, 0) * 0.1s);
}

.instagram-item.visible {
    transition-delay: calc(var(--insta-index, 0) * 0.05s);
}

/* Section header entrance */
.section-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Featured section entrance */
.featured-post {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.featured-post.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Filter bar entrance */
.blog-filter-bar,
.inventory-filters {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.blog-filter-bar.visible,
.inventory-filters.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Calculator sections entrance */
.calculator-form,
.calculator-results {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.calculator-form.visible,
.calculator-results.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact form entrance */
.contact-form-container,
.contact-info-container {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-info-container {
    transform: translateX(30px);
}

.contact-form-container.visible,
.contact-info-container.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Map entrance */
.map-container {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.map-container.visible {
    opacity: 1;
    transform: scale(1);
}

/* Why choose section entrance */
.home .why-choose-content,
.home .why-choose-image {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home .why-choose-image {
    transform: translateX(30px);
}

.home .why-choose-content.visible,
.home .why-choose-image.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter entrance */
.home .newsletter-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home .newsletter-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Brands section entrance */
.home .brands-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home .brands-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CARD HOVER EFFECTS ===== */

/* Vehicle Card Hover Effects */
.vehicle-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px var(--accent-blue);
}

.vehicle-card:hover .vehicle-price {
    color: var(--accent-blue-light);
    transform: scale(1.05);
}

.vehicle-card:hover .btn-outline {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

/* USP Card Hover Effects */
.usp-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.usp-card:hover .usp-icon {
    background: var(--accent-blue);
    color: white;
    transform: rotate(360deg) scale(1.1);
}

/* Testimonial Card Hover */
.testimonial-card {
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-blue);
}

.testimonial-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
    animation: pulseGlow 0.6s ease-out;
}

/* Blog Card Hover */
.blog-card {
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-card:hover .blog-title a {
    color: var(--accent-blue);
}

/* Warranty Card Hover */
.warranty-card {
    transition: all 0.4s ease;
}

.warranty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.warranty-card:hover .warranty-icon {
    transform: scale(1.1);
    background: var(--accent-blue);
    color: white;
}

.warranty-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Finance Card Hover */
.finance-card {
    transition: all 0.4s ease;
}

.finance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.finance-card:hover h4 {
    color: var(--accent-blue-light);
}

/* Benefit Card Hover */
.benefit {
    transition: all 0.4s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit:hover .benefit-icon {
    transform: scale(1.1);
    background: var(--accent-blue-light);
}

/* Step Card Hover */
.step {
    transition: all 0.4s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step:hover .step-number {
    transform: scale(1.1);
    background: var(--accent-blue-light);
}

/* Blog Post Card Hover */
.blog-post-card {
    transition: all 0.4s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-post-card:hover .post-card-image img {
    transform: scale(1.08);
}

.blog-post-card:hover .post-card-title a {
    color: var(--accent-blue);
}

/* Featured Post Hover */
.featured-post:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Gallery Thumb Hover */
.gallery-thumb {
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    transform: translateY(-3px);
    opacity: 1;
    border-color: var(--accent-blue);
}

/* Button Hover Enhancement */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::after {
    width: 200px;
    height: 200px;
}

/* Social Icon Hover */
.social-link,
.social-icons a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover,
.social-icons a:hover {
    transform: translateY(-5px) rotate(360deg);
    background: var(--accent-blue);
    color: white;
}

/* Footer Menu Hover */
.footer-menu a {
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    transform: translateX(8px);
    color: var(--accent-blue);
}

/* Read More Link Hover */
.read-more,
.card-link,
.warranty-link {
    transition: all 0.3s ease;
}

.read-more:hover,
.card-link:hover,
.warranty-link:hover {
    gap: 10px;
    color: var(--accent-blue-light);
}

/* Category Tab Hover */
.category-tab {
    transition: all 0.3s ease;
}

.category-tab:hover {
    transform: translateY(-2px);
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

/* Pagination Hover */
.pagination a,
.blog-pagination a {
    transition: all 0.3s ease;
}

.pagination a:hover,
.blog-pagination a:hover {
    transform: translateY(-2px);
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

/* Form Input Focus Effect */
.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    border-color: var(--accent-blue);
    box-shadow: 0 5px 15px rgba(201, 161, 74, 0.2);
}

/* Image Zoom Hover for Gallery */
.vehicle-gallery-main img {
    transition: transform 0.5s ease;
}

.vehicle-gallery-main:hover img {
    transform: scale(1.03);
}

/* Instagram Item Hover */
.instagram-item {
    transition: all 0.4s ease;
}

.instagram-item:hover {
    transform: scale(1.02);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* Tag Cloud Hover */
.tag-link {
    transition: all 0.3s ease;
}

.tag-link:hover {
    transform: translateY(-2px);
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .home .hero-subtitle,
    .home .hero-title,
    .home .hero-description,
    .home .hero-buttons,
    .page-hero .page-hero-title,
    .page-hero .page-hero-description,
    .page-hero .page-hero-breadcrumb,
    .vehicle-card,
    .usp-card,
    .testimonial-card,
    .blog-card,
    .warranty-card,
    .finance-card,
    .benefit,
    .step,
    .blog-post-card,
    .sidebar-widget,
    .instagram-item,
    .section-header,
    .featured-post,
    .blog-filter-bar,
    .inventory-filters,
    .calculator-form,
    .calculator-results,
    .contact-form-container,
    .contact-info-container,
    .map-container,
    .home .why-choose-content,
    .home .why-choose-image,
    .home .newsletter-wrapper,
    .home .brands-section {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
    
    .vehicle-card:hover,
    .usp-card:hover,
    .testimonial-card:hover,
    .blog-card:hover,
    .warranty-card:hover,
    .finance-card:hover,
    .benefit:hover,
    .step:hover {
        transform: none !important;
    }
}