/* Components CSS - Clean Professional Version */
@import url('variables.css');
@import url('base.css');

/* Header */
.header { background-color: var(--white); border-bottom: 1px solid var(--neutral-200); position: sticky; top: 0; z-index: 1000; }
.header-container { padding: 1rem 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.header-logo { height: 50px; margin: 0; }
.header-nav { display: flex; }
.nav-menu { display: flex; list-style: none; margin: 0; padding: 0; }
.nav-item { margin-left: 1.5rem; position: relative; }
.nav-link { font-family: var(--font-secondary); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: var(--neutral-700); text-decoration: none; transition: color 0.2s; }
.nav-link:hover { color: var(--primary); }
.contact-bar { display: flex; align-items: center; margin-bottom: 1rem; }
.contact-item { display: flex; align-items: center; margin-left: 1.5rem; font-size: 0.875rem; color: var(--neutral-600); }
.contact-item i { margin-right: 0.5rem; color: var(--primary); }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; color: var(--neutral-700); cursor: pointer; }

@media (max-width: 992px) {
  .header-contact { display: none; }
  .hamburger { display: block; }
  .nav-menu { position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px); background-color: var(--white); flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 2rem; transition: left 0.3s; }
  .nav-menu.active { left: 0; }
  .nav-item { margin: 1rem 0; }
  .nav-link { font-size: 1.1rem; }
}

/* Hero Banner */
.hero { position: relative; height: 500px; overflow: hidden; background-color: var(--neutral-800); }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease; background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); }
.hero-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 1rem; }
.hero-title { font-size: 3rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); }
.hero-subtitle { font-size: 1.25rem; color: var(--white); margin-bottom: 2rem; opacity: 0.9; }
.hero-buttons { display: flex; gap: 1rem; }


/* Search Section */
.search-section { background-color: var(--neutral-800); padding: 1.5rem 0; }
.search-container { max-width: 800px; margin: 0 auto; }
.search-form { display: flex; gap: 0.5rem; }
.search-input { flex: 1; padding: 0.75rem 1rem; border: none; border-radius: 4px; font-size: 1rem; }
.search-input:focus { outline: none; border: 2px solid var(--primary); }
.search-btn { background-color: var(--primary); color: var(--white); border: none; border-radius: 4px; padding: 0.75rem 1.5rem; font-weight: 600; cursor: pointer; }
.search-btn:hover { background-color: var(--primary-dark); }

@media (max-width: 576px) {
  .search-form { flex-direction: column; }
}

/* Featured Vehicles */
.featured-section { padding: 4rem 0; background-color: var(--white); }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2.25rem; font-weight: 700; color: var(--neutral-800); margin-bottom: 1rem; }
.section-title p { font-size: 1.125rem; color: var(--neutral-600); max-width: 600px; margin: 0 auto; }
.vehicle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.vehicle-card { background-color: var(--white); border: 1px solid var(--neutral-200); overflow: hidden; transition: box-shadow 0.2s; }

.vehicle-card:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
.vehicle-image { height: 180px; overflow: hidden; }
.vehicle-image img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-details { padding: 1.5rem; }
.vehicle-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--neutral-800); }
.vehicle-subtitle { font-size: 0.875rem; color: var(--neutral-500); margin-bottom: 0.5rem; }
.vehicle-price { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.view-all { text-align: center; margin-top: 3rem; }

/* Welcome Section */
.welcome-section { padding: 5rem 0; background-color: var(--white); }
.welcome-container { display: flex; align-items: center; gap: 4rem; }
.welcome-content { flex: 1; }
.welcome-badge { display: inline-block; background: var(--primary); color: white; font-size: 0.875rem; font-weight: 600; padding: 0.5rem 1rem; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.5px; }
.welcome-title { font-size: 2.5rem; font-weight: 700; color: var(--neutral-800); margin-bottom: 1.5rem; line-height: 1.2; }
.welcome-text { font-size: 1.125rem; color: var(--neutral-600); margin-bottom: 2rem; line-height: 1.6; }
.welcome-features { list-style: none; padding: 0; margin: 1.5rem 0; }
.welcome-features li { margin-bottom: 0.75rem; display: flex; align-items: center; color: var(--neutral-700); }
.welcome-features i { color: var(--primary); margin-right: 0.75rem; font-size: 1rem; }
.welcome-btn { display: inline-block; background-color: var(--primary); color: white; font-weight: 600; padding: 0.875rem 1.75rem; text-decoration: none; transition: background-color 0.2s; }
.welcome-btn:hover { background-color: var(--primary-dark); color: white; }

/* Promo Card */
.promo-card { display: flex; flex-direction: column; width: 380px; background: var(--white); border: 1px solid var(--neutral-200); overflow: hidden; }
.promo-image { position: relative; height: 200px; overflow: hidden; }
.promo-image img { width: 100%; height: 100%; object-fit: cover; }
.promo-tag { position: absolute; top: 16px; right: 16px; background: var(--primary); color: white; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; padding: 6px 12px; letter-spacing: 0.5px; }
.promo-content { padding: 24px; }
.promo-title { color: var(--neutral-800); font-size: 1.5rem; font-weight: 700; margin: 0 0 4px 0; }
.promo-subtitle { color: var(--primary); font-size: 1rem; font-weight: 600; margin: 0 0 24px 0; }
.promo-features { margin-bottom: 24px; }
.promo-feature { display: flex; align-items: center; margin-bottom: 16px; }
.feature-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--neutral-100); margin-right: 12px; flex-shrink: 0; }
.feature-icon i { color: var(--primary); font-size: 14px; }
.feature-text { color: var(--neutral-600); font-weight: 500; }
.promo-button { display: flex; align-items: center; justify-content: center; background: var(--primary); color: white; font-weight: 600; padding: 12px 20px; text-decoration: none; transition: background-color 0.2s; }
.promo-button:hover { background: var(--primary-dark); color: white; }
.promo-button span { margin-right: 8px; }

@media (max-width: 992px) {
    .welcome-container { flex-direction: column; gap: 3rem; }
    .welcome-title { font-size: 2rem; }
    .promo-card { width: 100%; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .welcome-section { padding: 3rem 0; }
    .welcome-title { font-size: 1.75rem; }
    .promo-image { height: 160px; }
    .promo-content { padding: 20px; }
}

/* Body Type Section */
.body-type-section { padding: 4rem 0; background-color: var(--neutral-50); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.25rem; font-weight: 700; color: var(--neutral-800); margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--neutral-600); max-width: 800px; margin: 0 auto 1rem; line-height: 1.6; }
.body-type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 800px; margin: 0 auto; }
.body-type-item { display: flex; justify-content: center; transition: transform 0.2s; }
.body-type-item:hover { transform: translateY(-3px); }
.body-type-link { display: flex; flex-direction: column; align-items: center; text-decoration: none; width: 100%; }
.body-type-icon-wrapper { display: flex; justify-content: center; align-items: center; width: 140px; height: 140px; border-radius: 100%; background-color: var(--white); border: 1px solid var(--neutral-200); margin-bottom: 15px; transition: border-color 0.2s; }
.body-type-item:hover .body-type-icon-wrapper { border-color: var(--primary); }
.body-type-icon { max-width: 80%; max-height: 80%; }
.body-type-label { font-size: 1rem; font-weight: 600; color: var(--neutral-800); text-align: center; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s; }
.body-type-item:hover .body-type-label { color: var(--primary); }

@media (max-width: 768px) {
    .body-type-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .body-type-icon-wrapper { width: 100px; height: 100px; }
    .body-type-label { font-size: 0.9rem; }
}

    /* Action Cards Section */
    .nav-cards-section { padding: 4rem 0; background-color: var(--neutral-800); color: var(--white); }
    .nav-cards-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
    .nav-card { height: 100%; }
    .nav-card-inner { background-color: var(--white); padding: 2rem; height: 100%; display: flex; flex-direction: column; }
    .nav-card-icon { width: 60px; height: 60px; background-color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
    .nav-card-icon i { font-size: 24px; color: var(--white); }
    .nav-card-title { font-size: 1.25rem; font-weight: 600; color: var(--neutral-800); margin-bottom: 1rem; }
    .nav-card-text { font-size: 1rem; color: var(--neutral-600); line-height: 1.5; margin-bottom: 1.5rem; flex-grow: 1; }
    .nav-card-button { display: inline-block; padding: 0.75rem 1.5rem; background-color: transparent; color: var(--primary); border: 2px solid var(--primary); font-weight: 600; text-decoration: none; transition: all 0.2s; text-align: center; }
    .nav-card-button:hover { background-color: var(--primary); color: white; }

    @media (max-width: 992px) { 
        .nav-cards-container { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 576px) {
        .nav-cards-section { padding: 3rem 0; }
        .nav-cards-container { grid-template-columns: 1fr; }
    }

/* Shop By Price */
.shop-price-section { padding: 4rem 0; background-color: var(--neutral-800); color: var(--white); }
.shop-price-title { color: var(--white); text-align: center; font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.shop-price-subtitle { color: var(--neutral-300); text-align: center; margin-bottom: 3rem; }
.price-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 2rem; }
.price-option { background-color: var(--white); position: relative; transition: transform 0.2s; }
.price-option:hover { transform: translateY(-5px); }
.price-badge { position: absolute; top: 1rem; right: 1rem; background-color: var(--primary); color: var(--white); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; }
.price-link { display: block; padding: 2rem; text-align: center; color: var(--neutral-800); text-decoration: none; }
.price-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; background-color: var(--primary); color: var(--white); margin-bottom: 1.5rem; font-size: 1.5rem; }
.price-value { font-size: 1.5rem; font-weight: 700; color: var(--neutral-800); margin-bottom: 1rem; }
.price-desc { color: var(--neutral-600); }

/* Finance Section */
.finance-section { padding: 4rem 0; background-color: var(--neutral-50); }
.finance-container { display: flex; align-items: center; gap: 4rem; }
.finance-image { flex: 1; position: relative; height: 400px; }
.finance-image img { width: 100%; height: 100%; object-fit: cover; }
.finance-badge { position: absolute; top: 1rem; right: 1rem; background-color: var(--primary); color: var(--white); font-size: 0.875rem; font-weight: 600; padding: 0.5rem 1rem; }
.finance-content { flex: 1; }
.finance-title { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--neutral-800); }
.finance-title span { color: var(--primary); }
.finance-features { margin: 1rem 0; }
.finance-feature { display: flex; align-items: flex-start; margin-bottom: 1rem; padding: 0.75rem; border-left: 3px solid transparent; transition: border-color 0.2s; }
.finance-feature:hover { border-left-color: var(--primary); }
.finance-feature-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: var(--primary); color: var(--white); margin-right: 1rem; flex-shrink: 0; }
.finance-feature-content { flex: 1; }
.finance-feature-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--neutral-800); }
.finance-feature-desc { color: var(--neutral-600); }
.finance-cta { margin-top: 1rem; }

@media (max-width: 992px) {
  .finance-container { flex-direction: column; }
  .finance-image { width: 100%; height: 300px; }
}


/* sidebar design */
.info-card { background: var(--white); border-radius: var(--border-radius); box-shadow: var(--box-shadow); margin-bottom: 2rem; overflow: hidden; }
.info-card-header { background: var(--gradient-light); color: var(--white); padding: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.info-card-header i { font-size: 1.2rem; color: var(--accent) }
.info-card-header h3 { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--neutral-800) }
.info-card-body { padding: 1.5rem; }
.info-card-list { list-style: none; padding: 0; margin: 0; }
.info-card-list li { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--neutral-200); color: var(--neutral-700); }
.info-card-list li:last-child { border-bottom: none; }
.info-card-list i { color: var(--primary); font-size: 1rem; width: 16px; }
.hours-card { background: var(--white); border-radius: var(--border-radius); box-shadow: var(--box-shadow); margin-bottom: 2rem; overflow: hidden; }
.hours-card-header { background: var(--gradient-light); color: var(--white); padding: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.hours-card-header i { font-size: 1.2rem; }
.hours-card-header h3 { margin: 0; font-size: 1.1rem; font-weight: 700; }
.hours-card-body { padding: 1.5rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--neutral-200); }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--neutral-800); }
.hours-time { color: var(--neutral-600); }
.contact-card { background: var(--white); border-radius: var(--border-radius); box-shadow: var(--box-shadow); padding: 1.5rem; text-align: center; }
.contact-card h3 { color: var(--neutral-800); margin-bottom: 1rem; }
.contact-card p { color: var(--neutral-600); margin-bottom: 1.5rem; line-height: 1.5; }
.contact-link { display: block; padding: 0.75rem 1rem; background: var(--primary); color: var(--white)!important; text-decoration: none; border-radius: var(--border-radius); margin-bottom: 0.5rem; transition: var(--transition-normal); }
.contact-link:hover { background: var(--primary-dark); color: var(--white); }
.contact-link:last-child { margin-bottom: 0; }
.contact-link i { margin-right: 0.5rem; }




/* Footer */
.footer { background-color: var(--neutral-900); color: var(--neutral-300); padding: 4rem 0 2rem; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.footer-container p, .footer-container span { font-size: 0.9rem; margin: 0 0 0.5rem; }
.footer-title { color: var(--white); font-size: 1.125rem; font-weight: 600; margin-bottom: 1.5rem; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-link { display: block; color: var(--neutral-300); padding: 0.25rem 0; transition: color 0.2s; text-decoration: none; }
.footer-link:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; margin-bottom: 1rem; }
.footer-contact-icon { color: var(--primary); margin-right: 1rem; font-size: 1rem; flex-shrink: 0; }
.footer-contact-text { flex: 1; }
.footer-bottom { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--neutral-700); }
.footer-copyright { font-size: 0.875rem; color: var(--neutral-400); }
.footer-copyright a { color: var(--primary); text-decoration: none; }
.footer-copyright a:hover { text-decoration: underline; }