/* ==========================================================================
   AutoRebuilt Child Theme — Dealer 110059
   Primary: #EBAF47 | Secondary: #101318
   ========================================================================== */

/* --------------------------------------------------------------------------
   Header — Top Bar
   -------------------------------------------------------------------------- */

.autorebuilt-theme .website-top-bar {
    background-color: #101318;
}

.autorebuilt-theme .website-top-bar-list-item,
.autorebuilt-theme .website-top-bar-list-item a {
    color: #ffffff;
    font-size: 13px;
}

.autorebuilt-theme .website-top-bar-list-item i {
    color: rgba(255,255,255,0.6);
}

.autorebuilt-theme .top-bar-items-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 36px;
}

.autorebuilt-theme .website-top-bar-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.autorebuilt-theme .ar-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.autorebuilt-theme .ar-topbar-social a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.2s;
}

.autorebuilt-theme .ar-topbar-social a:hover {
    color: #EBAF47;
}

.autorebuilt-theme .ar-topbar-bbb img {
    height: 28px;
    width: auto;
    vertical-align: middle;
}

/* --------------------------------------------------------------------------
   Header — Nav Bar
   -------------------------------------------------------------------------- */

.autorebuilt-theme .website-header-container {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.autorebuilt-theme .website-navbar {
    background-color: #ffffff;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.autorebuilt-theme .website-logo img {
    max-height: 52px;
    width: auto;
}

.autorebuilt-theme .website-items {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.autorebuilt-theme .website-items li a {
    color: #101318;
    font-weight: 500;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: color 0.2s, background-color 0.2s;
    display: block;
}

.autorebuilt-theme .website-items li a:hover {
    color: #EBAF47;
    background-color: rgba(235,175,71,0.06);
}

.autorebuilt-theme .website-items li.current-menu-item > a {
    color: #EBAF47 !important;
    font-weight: 700;
}

.autorebuilt-theme .website-nav-button .v12-button {
    background-color: #EBAF47;
    color: #101318 !important;
    border-radius: 50px;
    font-weight: 700;
    padding: 10px 24px;
    font-size: 14px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s, transform 0.2s;
    white-space: nowrap;
}

.autorebuilt-theme .website-nav-button .v12-button:hover {
    background-color: #d4983a;
    transform: translateY(-1px);
}

.autorebuilt-theme .website-nav-button .anim-layer {
    display: none;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */

.autorebuilt-theme .ar-hero {
    min-height: 580px;
    background-color: #0d1118;
    background-image: linear-gradient(135deg, #0d1118 0%, #1a2240 50%, #0d1118 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.autorebuilt-theme .ar-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(235,175,71,0.08) 0%, transparent 60%);
}

.autorebuilt-theme .ar-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 80px 24px;
}

.autorebuilt-theme .ar-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.autorebuilt-theme .ar-hero h1 .ar-highlight {
    color: #EBAF47;
}

.autorebuilt-theme .ar-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 36px;
    line-height: 1.65;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.autorebuilt-theme .ar-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Shared Button Styles
   -------------------------------------------------------------------------- */

.autorebuilt-theme .ar-btn-primary {
    background-color: #EBAF47;
    color: #101318;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s, transform 0.15s;
    border: 2px solid #EBAF47;
}

.autorebuilt-theme .ar-btn-primary:hover {
    background-color: #d4983a;
    border-color: #d4983a;
    color: #101318;
    transform: translateY(-1px);
}

.autorebuilt-theme .ar-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.autorebuilt-theme .ar-btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #ffffff;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   Homepage — General Section Wrapper
   -------------------------------------------------------------------------- */

.autorebuilt-theme .ar-section {
    padding: 72px 20px;
}

.autorebuilt-theme .ar-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.autorebuilt-theme .ar-section-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #101318;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
}

.autorebuilt-theme .ar-section-subtitle {
    color: #6b7280;
    text-align: center;
    font-size: 15px;
    margin-bottom: 48px;
    line-height: 1.65;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   Homepage — Inventory Carousel Section
   -------------------------------------------------------------------------- */

.autorebuilt-theme .ar-carousel-section {
    background-color: #f9fafb;
    padding: 72px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.autorebuilt-theme .ar-carousel-section .ar-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Homepage — What Is Rebuilt Title Feature Blocks
   -------------------------------------------------------------------------- */

.autorebuilt-theme .ar-features-section {
    background-color: #ffffff;
    padding: 72px 20px;
}

.autorebuilt-theme .ar-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .autorebuilt-theme .ar-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .autorebuilt-theme .ar-features-grid {
        grid-template-columns: 1fr;
    }
}

.autorebuilt-theme .ar-feature-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: left;
    transition: box-shadow 0.2s, transform 0.2s;
}

.autorebuilt-theme .ar-feature-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}

.autorebuilt-theme .ar-feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(235,175,71,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 20px;
    color: #EBAF47;
}

.autorebuilt-theme .ar-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #101318;
    margin-bottom: 10px;
    line-height: 1.3;
}

.autorebuilt-theme .ar-feature-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Homepage — Why Buy From Us
   -------------------------------------------------------------------------- */

.autorebuilt-theme .ar-why-section {
    background-color: #101318;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.autorebuilt-theme .ar-why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(235,175,71,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.autorebuilt-theme .ar-why-section .ar-section-title {
    color: #ffffff;
}

.autorebuilt-theme .ar-why-section .ar-section-subtitle {
    color: rgba(255,255,255,0.6);
    margin-bottom: 56px;
}

.autorebuilt-theme .ar-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

@media (max-width: 1024px) {
    .autorebuilt-theme .ar-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .autorebuilt-theme .ar-why-grid {
        grid-template-columns: 1fr;
    }
}

.autorebuilt-theme .ar-why-item {
    text-align: center;
}

.autorebuilt-theme .ar-why-icon {
    width: 68px;
    height: 68px;
    background: rgba(235,175,71,0.12);
    border: 1px solid rgba(235,175,71,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    color: #EBAF47;
    transition: background-color 0.2s, transform 0.2s;
}

.autorebuilt-theme .ar-why-item:hover .ar-why-icon {
    background: rgba(235,175,71,0.2);
    transform: scale(1.05);
}

.autorebuilt-theme .ar-why-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.autorebuilt-theme .ar-why-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.58);
    line-height: 1.65;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Homepage — Featured Inventory Section
   -------------------------------------------------------------------------- */

.autorebuilt-theme .ar-featured-section {
    background: #ffffff;
    padding: 72px 20px;
}

.autorebuilt-theme .ar-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 16px;
    flex-wrap: wrap;
}

.autorebuilt-theme .ar-featured-header .ar-section-title {
    margin-bottom: 0;
    text-align: left;
}

.autorebuilt-theme .ar-view-all-link {
    color: #EBAF47;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.2s;
}

.autorebuilt-theme .ar-view-all-link:hover {
    color: #d4983a;
}

.autorebuilt-theme .ar-cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .autorebuilt-theme .ar-cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .autorebuilt-theme .ar-cars-grid {
        grid-template-columns: 1fr;
    }
}

.autorebuilt-theme .ar-car-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.22s, transform 0.22s;
    display: flex;
    flex-direction: column;
}

.autorebuilt-theme .ar-car-card:hover {
    box-shadow: 0 10px 32px rgba(0,0,0,0.13);
    transform: translateY(-3px);
}

.autorebuilt-theme .ar-car-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #f3f4f6;
}

.autorebuilt-theme .ar-car-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.autorebuilt-theme .ar-car-card:hover .ar-car-img-wrap img {
    transform: scale(1.03);
}

.autorebuilt-theme .ar-rebuilt-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #EBAF47;
    color: #101318;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

.autorebuilt-theme .ar-car-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.autorebuilt-theme .ar-car-badge-sub {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 500;
}

.autorebuilt-theme .ar-car-title {
    font-size: 17px;
    font-weight: 700;
    color: #101318;
    margin-bottom: 6px;
    line-height: 1.3;
    text-decoration: none;
    display: block;
}

.autorebuilt-theme .ar-car-price {
    font-size: 21px;
    font-weight: 800;
    color: #EBAF47;
    margin-bottom: 4px;
}

.autorebuilt-theme .ar-car-miles {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 18px;
    flex: 1;
}

.autorebuilt-theme .ar-car-btn {
    background: #EBAF47;
    color: #101318;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: background-color 0.2s;
    width: 100%;
}

.autorebuilt-theme .ar-car-btn:hover {
    background-color: #d4983a;
    color: #101318;
}

/* --------------------------------------------------------------------------
   Homepage — Map Section
   -------------------------------------------------------------------------- */

.autorebuilt-theme .ar-map-section {
    background: #f9fafb;
}

.autorebuilt-theme .ar-map-section .map-container {
    height: 420px;
}

/* --------------------------------------------------------------------------
   Homepage — Trust / BBB Section
   -------------------------------------------------------------------------- */

.autorebuilt-theme .ar-trust-section {
    background: #f9fafb;
    padding: 40px 20px;
    border-top: 1px solid #e5e7eb;
}

.autorebuilt-theme .ar-trust-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.autorebuilt-theme .ar-trust-inner img {
    height: 68px;
    width: auto;
}

.autorebuilt-theme .ar-trust-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #101318;
    margin-bottom: 4px;
}

.autorebuilt-theme .ar-trust-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.autorebuilt-theme .ar-footer {
    background-color: #101318;
}

.autorebuilt-theme .ar-footer-top {
    padding: 56px 20px 40px;
}

.autorebuilt-theme .ar-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 48px;
}

@media (max-width: 1024px) {
    .autorebuilt-theme .ar-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 580px) {
    .autorebuilt-theme .ar-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.autorebuilt-theme .ar-footer-logo {
    max-height: 44px;
    width: auto;
    margin-bottom: 14px;
    display: block;
}

.autorebuilt-theme .ar-footer-tagline {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.autorebuilt-theme .ar-footer-col-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #EBAF47;
    display: inline-block;
}

.autorebuilt-theme .ar-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.autorebuilt-theme .ar-footer-links li a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.autorebuilt-theme .ar-footer-links li a:hover {
    color: #EBAF47;
}

.autorebuilt-theme .ar-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.autorebuilt-theme .ar-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.5;
}

.autorebuilt-theme .ar-footer-contact-list li i {
    color: #EBAF47;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 13px;
}

.autorebuilt-theme .ar-footer-contact-list li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.autorebuilt-theme .ar-footer-contact-list li a:hover {
    color: #EBAF47;
}

.autorebuilt-theme .ar-footer-bbb img {
    height: 72px;
    width: auto;
    margin-top: 8px;
    opacity: 0.92;
    transition: opacity 0.2s;
}

.autorebuilt-theme .ar-footer-bbb img:hover {
    opacity: 1;
}

.autorebuilt-theme .ar-footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 0;
}

.autorebuilt-theme .ar-footer-bottom {
    background-color: #0a0c10;
    padding: 16px 20px;
}

.autorebuilt-theme .ar-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.autorebuilt-theme .ar-footer-copyright {
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    line-height: 1.5;
}

.autorebuilt-theme .ar-footer-copyright a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.autorebuilt-theme .ar-footer-copyright a:hover {
    color: #EBAF47;
}

.autorebuilt-theme .ar-footer-social {
    display: flex;
    gap: 12px;
}

.autorebuilt-theme .ar-footer-social a {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    transition: color 0.2s;
}

.autorebuilt-theme .ar-footer-social a:hover {
    color: #EBAF47;
}

/* --------------------------------------------------------------------------
   Inventory Listing Page — Banner
   -------------------------------------------------------------------------- */

.autorebuilt-theme .ar-inv-banner {
    background-color: #101318;
    background-image: linear-gradient(135deg, #101318 0%, #1b2544 100%);
    padding: 56px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.autorebuilt-theme .ar-inv-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(235,175,71,0.07) 0%, transparent 55%);
    pointer-events: none;
}

.autorebuilt-theme .ar-inv-banner h1 {
    position: relative;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.autorebuilt-theme .ar-inv-banner p {
    position: relative;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Inventory card overrides */
.autorebuilt-theme .inventory-action {
    background-color: #EBAF47 !important;
    border-radius: 6px;
    margin-top: 4px;
}

.autorebuilt-theme .inventory-action p {
    color: #101318 !important;
    font-weight: 700 !important;
    text-align: center;
}

.autorebuilt-theme .vehicle-price,
.autorebuilt-theme .listing-price,
.autorebuilt-theme .price-section .price {
    color: #EBAF47 !important;
    font-weight: 800 !important;
}

/* --------------------------------------------------------------------------
   VDP (Vehicle Detail Page) Overrides
   -------------------------------------------------------------------------- */

.autorebuilt-theme .return-btn {
    max-width: 1200px;
    margin: 12px auto 0;
    padding: 0 20px;
}

.autorebuilt-theme .return-btn a {
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #f9fafb;
    transition: all 0.2s;
}

.autorebuilt-theme .return-btn a:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #101318;
}

.autorebuilt-theme .price-vdp,
.autorebuilt-theme .vdp-price,
.autorebuilt-theme .col-1-2 .vehicle-price {
    color: #EBAF47 !important;
    font-weight: 800 !important;
}

/* VDP buttons */
.autorebuilt-theme .btn-call-now,
.autorebuilt-theme .vdp-main-cta {
    background-color: #EBAF47 !important;
    color: #101318 !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    border: none !important;
}

.autorebuilt-theme .btn-send-inquiry,
.autorebuilt-theme .vdp-secondary-cta {
    border: 2px solid #d1d5db !important;
    color: #374151 !important;
    background: transparent !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
}

/* VDP accordion */
.autorebuilt-theme .col-2-1-tab-vdp-3,
.autorebuilt-theme .col-2-2-tab-vdp-3 {
    border-bottom: 1px solid #e5e7eb !important;
    font-weight: 600 !important;
    color: #101318 !important;
    cursor: pointer !important;
}

.autorebuilt-theme .col-2-1-tab-vdp-3:hover,
.autorebuilt-theme .col-2-2-tab-vdp-3:hover {
    color: #EBAF47 !important;
}

/* Similar listings */
.autorebuilt-theme .home-block-inventory .inventory-action {
    background-color: #EBAF47 !important;
}

.autorebuilt-theme .home-block-inventory .inventory-action p {
    color: #101318 !important;
    font-weight: 700 !important;
}

/* --------------------------------------------------------------------------
   Branded Title Page
   -------------------------------------------------------------------------- */

.autorebuilt-theme .bt-hero {
    background-color: #101318;
    padding: 72px 20px 60px;
    text-align: center;
}

.autorebuilt-theme .bt-hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 14px;
    line-height: 1.22;
}

.autorebuilt-theme .bt-hero h1 .ar-highlight {
    color: #EBAF47;
}

.autorebuilt-theme .bt-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.autorebuilt-theme .bt-video-wrap {
    max-width: 680px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

.autorebuilt-theme .bt-video-wrap video {
    width: 100%;
    display: block;
    background: #000;
}

/* Intro — two-column */
.autorebuilt-theme .bt-intro {
    padding: 72px 20px;
    background: #ffffff;
}

.autorebuilt-theme .bt-intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

@media (max-width: 768px) {
    .autorebuilt-theme .bt-intro-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.autorebuilt-theme .bt-intro-img img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 380px;
}

.autorebuilt-theme .bt-intro-text h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: #101318;
    margin-bottom: 20px;
    line-height: 1.3;
}

.autorebuilt-theme .bt-intro-text h2 .ar-highlight {
    color: #EBAF47;
}

.autorebuilt-theme .bt-intro-text p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 15px;
}

.autorebuilt-theme .bt-intro-text p:last-of-type {
    margin-bottom: 28px;
}

/* Cause sections */
.autorebuilt-theme .bt-cause {
    padding: 64px 20px;
    background: #ffffff;
}

.autorebuilt-theme .bt-cause.bg-light {
    background: #f9fafb;
}

.autorebuilt-theme .bt-cause-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

@media (max-width: 768px) {
    .autorebuilt-theme .bt-cause-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .autorebuilt-theme .bt-cause.reverse .bt-cause-img {
        order: -1;
    }
}

.autorebuilt-theme .bt-cause-img img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 360px;
    display: block;
}

.autorebuilt-theme .bt-cause-text h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: #101318;
    margin-bottom: 10px;
    padding-bottom: 14px;
    border-bottom: 3px solid #EBAF47;
    display: inline-block;
}

.autorebuilt-theme .bt-cause-text p {
    color: #4b5563;
    line-height: 1.75;
    font-size: 15px;
    margin-top: 20px;
}

/* Inspection accordion */
.autorebuilt-theme .bt-inspection {
    background: #f9fafb;
    padding: 72px 20px;
}

.autorebuilt-theme .bt-inspection-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #101318;
    text-align: center;
    margin-bottom: 10px;
}

.autorebuilt-theme .bt-inspection-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 44px;
    font-size: 15px;
    line-height: 1.6;
}

.autorebuilt-theme .bt-accordion {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.autorebuilt-theme .bt-acc-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.autorebuilt-theme .bt-acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #101318;
    user-select: none;
    transition: background-color 0.2s;
}

.autorebuilt-theme .bt-acc-header:hover {
    background: #fafafa;
}

.autorebuilt-theme .bt-acc-header .bt-acc-icon {
    color: #EBAF47;
    font-size: 13px;
    transition: transform 0.28s;
    flex-shrink: 0;
}

.autorebuilt-theme .bt-acc-item.open .bt-acc-header .bt-acc-icon {
    transform: rotate(180deg);
}

.autorebuilt-theme .bt-acc-body {
    display: none;
    padding: 0 24px 20px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.75;
}

.autorebuilt-theme .bt-acc-item.open .bt-acc-body {
    display: block;
}

/* Benefits */
.autorebuilt-theme .bt-benefits {
    background: #ffffff;
    padding: 72px 20px;
}

.autorebuilt-theme .bt-benefits-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #101318;
    text-align: center;
    margin-bottom: 44px;
}

.autorebuilt-theme .bt-benefits-grid {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 640px) {
    .autorebuilt-theme .bt-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.autorebuilt-theme .bt-benefit-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.autorebuilt-theme .bt-benefit-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.autorebuilt-theme .bt-benefit-icon {
    font-size: 30px;
    color: #EBAF47;
    margin-bottom: 14px;
}

.autorebuilt-theme .bt-benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #101318;
    margin-bottom: 8px;
}

.autorebuilt-theme .bt-benefit-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* FAQ */
.autorebuilt-theme .bt-faq {
    background: #f9fafb;
    padding: 72px 20px;
}

.autorebuilt-theme .bt-faq-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #101318;
    text-align: center;
    margin-bottom: 44px;
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */

.autorebuilt-theme .ar-contact-hero {
    background-color: #101318;
    padding: 64px 20px;
    text-align: center;
}

.autorebuilt-theme .ar-contact-hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.autorebuilt-theme .ar-contact-hero p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin: 0;
}

.autorebuilt-theme .ar-contact-body {
    padding: 56px 20px;
    background: #f9fafb;
}

.autorebuilt-theme .ar-contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

@media (max-width: 768px) {
    .autorebuilt-theme .ar-contact-inner {
        grid-template-columns: 1fr;
    }
}

.autorebuilt-theme .ar-contact-form-wrap {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 36px 32px;
}

.autorebuilt-theme .ar-contact-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    border: 1px solid #e5e7eb;
}

.autorebuilt-theme .ar-contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.autorebuilt-theme .ar-contact-info-section {
    padding: 0 20px 56px;
    background: #f9fafb;
}

.autorebuilt-theme .ar-contact-info-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .autorebuilt-theme .ar-contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .autorebuilt-theme .ar-contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.autorebuilt-theme .ar-info-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.autorebuilt-theme .ar-info-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.autorebuilt-theme .ar-info-card-icon {
    font-size: 28px;
    color: #EBAF47;
    margin-bottom: 12px;
    display: block;
}

.autorebuilt-theme .ar-info-card h4 {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.autorebuilt-theme .ar-info-card p,
.autorebuilt-theme .ar-info-card a {
    font-size: 15px;
    font-weight: 700;
    color: #101318;
    text-decoration: none;
    line-height: 1.5;
    display: block;
}

.autorebuilt-theme .ar-info-card a:hover {
    color: #EBAF47;
}

.autorebuilt-theme .ar-info-card .ar-primary-text {
    color: #EBAF47;
    font-weight: 600;
    font-size: 13px;
    display: block;
    margin-top: 2px;
}

/* Form button overrides */
.autorebuilt-theme input[type="submit"],
.autorebuilt-theme button[type="submit"],
.autorebuilt-theme .wt-form-submit {
    background-color: #EBAF47 !important;
    color: #101318 !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer;
    transition: background-color 0.2s !important;
    width: 100%;
    padding: 12px 24px;
    font-size: 15px;
}

.autorebuilt-theme input[type="submit"]:hover,
.autorebuilt-theme button[type="submit"]:hover,
.autorebuilt-theme .wt-form-submit:hover {
    background-color: #d4983a !important;
}

/* --------------------------------------------------------------------------
   Responsive — Mobile Nav Drawer
   -------------------------------------------------------------------------- */

@media (max-width: 992px) {
    .autorebuilt-theme .ar-hero {
        min-height: 480px;
    }

    .autorebuilt-theme .ar-section {
        padding: 52px 20px;
    }

    .autorebuilt-theme .ar-why-section {
        padding: 56px 20px;
    }

    .autorebuilt-theme .bt-cause-inner {
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .autorebuilt-theme .ar-hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .autorebuilt-theme .ar-btn-primary,
    .autorebuilt-theme .ar-btn-outline {
        text-align: center;
    }

    .autorebuilt-theme .ar-featured-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .autorebuilt-theme .bt-video-wrap {
        border-radius: 8px;
    }

    .autorebuilt-theme .bt-benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .autorebuilt-theme .ar-contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}
