/* ========================================
   STATIC PAGES CSS - BAS WORLD
   All styles for: Contact Us, Sell Your Vehicle, How to Buy, About
   ======================================== */

/* Common Page Styles */
.page-header-section {
    text-align: center;
    padding: 3rem 0 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-main-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #111827;
}

.page-subtitle {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
}

.text-link {
    color: #00a651;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #111827;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #6B7280;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.text-green {
    color: #00A651;
}

/* ========================================
   CONTACT US PAGE
   ======================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* Contact Sidebar */
.contact-sidebar {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 0.5rem;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #111827;
}

.sidebar-subtitle {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.location-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.location-card-header {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.location-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.25rem;
}

.location-info {
    flex: 1;
}

.location-name {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: #111827;
}

.location-detail {
    font-size: 0.75rem;
    color: #6B7280;
    margin-bottom: 0.25rem;
}

.location-link {
    font-size: 0.75rem;
    color: #00a651;
    text-decoration: none;
}

.location-link:hover {
    text-decoration: underline;
}

.location-toggle {
    width: 32px;
    height: 32px;
    border: 1px solid #E5E7EB;
    border-radius: 0.25rem;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
}

.location-toggle:hover {
    background: #F9FAFB;
}

.contact-team-section {
    margin-top: 2rem;
}

.languages-section {
    margin-bottom: 2rem;
}

.languages-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #111827;
}

.flags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.flag-icon {
    width: 28px;
    height: 20px;
    border-radius: 2px;
    border: 1px solid #E5E7EB;
    display: inline-block;
}

.departments-section {
    margin-bottom: 2rem;
}

.departments-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #111827;
}

.department-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.department-item:last-child {
    border-bottom: none;
}

.department-label {
    font-size: 0.875rem;
    color: #6B7280;
}

.department-phone {
    font-size: 0.875rem;
    color: #00A651;
    text-decoration: none;
    font-weight: 500;
}

.department-phone:hover {
    text-decoration: underline;
}

.contact-image {
    margin-top: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.location-aerial {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Form */
.contact-main {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #111827;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #111827;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00a651;
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.phone-prefix {
    width: 120px;
    padding: 0.75rem 0.5rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.phone-number {
    flex: 1;
}

.contact-method-options {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #D1D5DB;
    border-radius: 0.25rem;
    cursor: pointer;
    position: relative;
}

.contact-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.contact-option input[type="checkbox"]:checked+.contact-icon {
    color: #00A651;
}

.contact-option:hover {
    background: #F9FAFB;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #6B7280;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #6B7280;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background: #00A8E8;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #0090C9;
}

/* ========================================
   SELL YOUR VEHICLE PAGE
   ======================================== */

/* Hero Section */
.sell-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    padding: 4rem 0;
}

.sell-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .sell-hero-content {
        grid-template-columns: 1fr;
    }
}

.sell-hero-left {
    padding: 2rem 0;
}

.sell-hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #111827;
}

.sell-hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #6B7280;
}

.vehicle-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .vehicle-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vehicle-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.vehicle-type-item:hover {
    border-color: #00A651;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vehicle-type-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
    color: #6B7280;
}

.vehicle-type-item:hover .vehicle-type-icon {
    color: #00A651;
}

.vehicle-type-label {
    font-size: 0.75rem;
    text-align: center;
    color: #111827;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.sell-hero-right {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Steps Section */
.steps-section {
    padding: 4rem 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: #F9FAFB;
    border-radius: 0.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #111827;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #111827;
}

.step-description {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Vehicle Categories */
.vehicle-categories-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

.category-circles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .category-circles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .category-circles {
        grid-template-columns: 1fr;
    }
}

.category-circle {
    text-align: center;
}

.category-circle-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-circle-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #111827;
}

.category-circle-text {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 4rem 0;
    background: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .why-choose-content {
        grid-template-columns: 1fr;
    }
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.why-choose-description {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-dark {
    background: #111827;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-dark:hover {
    background: #1F2937;
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}

.testimonial-card-dark {
    background: #1F2937;
    padding: 2rem;
    border-radius: 0.5rem;
    color: white;
}

.trustpilot-stars {
    color: #00B67A;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.trustpilot-stars-white {
    color: #00B67A;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #111827;
}

.testimonial-title-white {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.testimonial-text {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-text-white {
    font-size: 0.875rem;
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.5rem;
}

.testimonial-author-white {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.trustpilot-logo {
    height: 20px;
}

.trustpilot-badge,
.trustpilot-badge-center {
    text-align: center;
}

.trustpilot-badge img,
.trustpilot-badge-center img {
    height: 50px;
    margin-bottom: 0.5rem;
}

/* VTS Section */
.vts-section {
    padding: 4rem 0;
    background: white;
}

.vts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .vts-content {
        grid-template-columns: 1fr;
    }
}

.vts-description {
    font-size: 0.9375rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vts-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Valuation CTA */
.valuation-cta {
    padding: 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
}

.valuation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 400px;
}

@media (max-width: 1024px) {
    .valuation-content {
        grid-template-columns: 1fr;
    }
}

.valuation-text {
    padding: 4rem;
    color: white;
}

.valuation-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.valuation-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #D1D5DB;
}

.valuation-form {
    display: flex;
    gap: 1rem;
}

.valuation-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #374151;
    border-radius: 0.25rem;
    background: #374151;
    color: white;
    font-size: 0.875rem;
}

.valuation-input::placeholder {
    color: #9CA3AF;
}

.btn-white {
    background: white;
    color: #111827;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-white:hover {
    background: #F3F4F6;
}

.valuation-image {
    height: 100%;
    min-height: 400px;
}

.valuation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 300px;
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: white;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    color: #111827;
}

.faq-question:hover {
    background: #F9FAFB;
}

.faq-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
    color: #6B7280;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.btn-more {
    display: block;
    margin: 2rem auto 0;
    padding: 0.75rem 2rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    cursor: pointer;
}

.btn-more:hover {
    background: #F9FAFB;
}

/* Get in Touch CTA */
.get-in-touch-cta {
    padding: 0;
    background: #111827;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 400px;
}

@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
    }
}

.cta-text {
    padding: 4rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #D1D5DB;
}

.btn-cta {
    background: white;
    color: #111827;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-cta:hover {
    background: #F3F4F6;
}

.cta-image {
    height: 100%;
    min-height: 400px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   HOW TO BUY PAGE
   ======================================== */

/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.pexels.com/photos/1118777/pexels-photo-1118777.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover;
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-hero {
    background: #00a651;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-hero:hover {
    background: #3559c1;
}

/* Buy Steps */
.buy-steps-section {
    padding: 4rem 0;
    background: white;
}

.step-card-large {
    text-align: center;
    padding: 2rem;
}

.step-number-large {
    width: 80px;
    height: 80px;
    background: #111827;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-title-large {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #111827;
}

.step-description-large {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Large */
.categories-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

.categories-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .categories-slider {
        grid-template-columns: 1fr;
    }
}

.category-large-card {
    position: relative;
    height: 300px;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
}

.category-large-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-large-card:hover .category-large-image {
    transform: scale(1.1);
}

.category-large-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
}

.category-large-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

/* Why Choose Alt */
.why-choose-section-alt {
    padding: 4rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    text-align: center;
}

.benefit-number {
    width: 60px;
    height: 60px;
    background: #111827;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #111827;
}

.benefit-description {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Services Full */
.services-section-full {
    padding: 4rem 0;
    background: #F9FAFB;
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .services-grid-large {
        grid-template-columns: 1fr;
    }
}

.service-large-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.2s;
    cursor: pointer;
}

.service-large-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-large-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-large-content {
    padding: 1.5rem;
}

.service-tag {
    font-size: 0.75rem;
    color: #00A651;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.service-large-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #111827;
}

.service-link {
    color: #00a651;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-link:hover {
    text-decoration: underline;
}

/* Financial Services */
.financial-services {
    padding: 4rem 0;
    background: white;
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .financial-grid {
        grid-template-columns: 1fr;
    }
}

.financial-card-dark {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    padding: 3rem;
    border-radius: 0.5rem;
    color: white;
}

.financial-tag {
    font-size: 0.75rem;
    color: #00A651;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.financial-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.financial-description {
    font-size: 0.875rem;
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-white-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-white-outline:hover {
    background: white;
    color: #111827;
}

/* Responsive Utilities */
@media (max-width: 640px) {
    .page-main-title {
        font-size: 1.875rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .sell-hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

.btn-sold {
    background-color: #EF4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
}

.btn-reserved {
    background-color: #F59E0B;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
}

/* ========================================
   DASHBOARD STYLES
   ======================================== */

.dashboard-page {
    background-color: #F3F4F6;
    min-height: calc(100vh - 80px);
    /* Adjust based on header height */
    padding: 2rem 0;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar */
.dashboard-sidebar {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: fit-content;
}

.user-mini-profile {
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6B7280;
}

.user-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.user-name {
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    font-size: 0.875rem;
    color: #6B7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #374151;
    text-decoration: none;
    transition: background 0.2s;
    border-left: 3px solid transparent;
}

.nav-item:hover {
    background: #F9FAFB;
    color: #111827;
}

.nav-item.active {
    background: #F0FDF4;
    /* Light green bg */
    color: #00A651;
    /* Green text */
    border-left-color: #00A651;
}

.nav-icon {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.badge-count {
    background: #00A651;
    color: white;
    font-size: 0.75rem;
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    margin-left: auto;
}

.nav-divider {
    height: 1px;
    background: #E5E7EB;
    margin: 0.5rem 0;
}

.text-danger {
    color: #DC2626;
}

.text-danger:hover {
    color: #B91C1C;
    background: #FEF2F2;
}

/* Dashboard Content */
.dashboard-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.dashboard-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-filters {
    display: flex;
    gap: 0.5rem;
}

.tab-filter {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    color: #6B7280;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.tab-filter:hover {
    color: #111827;
    background: #F3F4F6;
}

.tab-filter.active {
    background: #111827;
    color: white;
}

.search-filter {
    position: relative;
    width: 300px;
}

.search-filter input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    /* Space for icon */
    border: 1px solid #D1D5DB;
    border-radius: 0.375rem;
}

.search-filter button {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #9CA3AF;
}

/* Orders List */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.empty-state p {
    color: #6B7280;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.order-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.order-header {
    padding: 1rem 1.5rem;
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6B7280;
}

.order-body {
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .order-body {
        flex-direction: column;
        align-items: flex-start;
    }
}

.vehicle-thumb {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 0.375rem;
    overflow: hidden;
    background: #F3F4F6;
}

.vehicle-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-details {
    flex: 1;
}

.vehicle-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.vehicle-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.order-actions {
    text-align: right;
}

@media (max-width: 768px) {
    .order-actions {
        text-align: left;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #E5E7EB;
    }
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-open {
    background: #DBEAFE;
    color: #1E40AF;
}

.status-complete {
    background: #D1FAE5;
    color: #065F46;
}

.status-lost {
    background: #FEE2E2;
    color: #991B1B;
}

.chat-status {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.text-success {
    color: #00A651;
}

.link-action {
    color: #00a651;
    text-decoration: none;
    font-size: 0.875rem;
}

.link-action:hover {
    text-decoration: underline;
}

/* Product Badges */
.product-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.badge-blue {
    background: #DBEAFE;
    color: #1E40AF;
}

.badge-green {
    background: #D1FAE5;
    color: #065F46;
}

.badge-sold {
    background: #EF4444;
}

.badge-reserved {
    background: #F59E0B;
}

color: #991B1B;
}

.badge-orange {
    background: #FEF3C7;
    color: #92400E;
}

.badge-dark {
    background: #1F2937;
    color: white;
}
