/* ==========================================================================
   GARAGE ELEVEN — CLEAN CUSTOM CSS
   Audited & rebuilt: February 2026
   
   AUDIT NOTES (what was removed and why):
   
   1. DUPLICATE RULES: The old CSS had 3-4 copies of the same hero styles,
      multiple copies of .page-id-41113 rules, and duplicate dropdown fixes.
      All consolidated into single declarations.
   
   2. ORPHANED / BROKEN CODE: There was a block of raw properties (font-family,
      padding, etc.) sitting outside any selector — likely a paste error from
      the YMM button styling. Fixed and wrapped properly.
   
   3. STRAY CLOSING BRACE: A lone "}" after the header widget holder block
      was breaking the cascade — anything after it may not have parsed correctly.
   
   4. CONFLICTING RULES: .g11-container had text-align:center set twice,
      hero section had 3 separate declarations overriding each other,
      and the product description centering (.product-desc-centered) was
      fighting with .g11-container p styles. Resolved.
   
   5. body color:#fff was set globally — this made all body text white,
      which is almost certainly wrong on a white background. Removed.
   
   6. background: #fffff (5 f's) — invalid hex. Fixed to #ffffff.
   
   7. !important OVERUSE: Reduced where possible. Landing pages still need
      them to override ShiftUp theme, but general styles cleaned up.
   
   8. The .qodef-title-holder { display:none !important } at the bottom
      was GLOBAL — hiding the title area on every page. Kept it since it
      seems intentional, but flagged with a comment.
   
   9. PRODUCT DESCRIPTION FIX: Added the WooCommerce product tab left-align
      fix you were missing (the offset issue from your screenshot).
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. GLOBAL RESETS & BASE TYPOGRAPHY
   -------------------------------------------------------------------------- */

body {
    background: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    /* NOTE: removed color:#fff — white text on white background is invisible */
}

/* Hide theme title/breadcrumb area sitewide (remove if you only want this on specific pages) */
.qodef-title-holder {
    display: none !important;
}


/* --------------------------------------------------------------------------
   2. HEADER LAYOUT (ShiftUp Theme Fix)
   -------------------------------------------------------------------------- */

.qodef-vertical-align-containers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.qodef-logo-wrapper {
    flex: 0 0 auto;
}

.qodef-header-navigation-wrapper {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qodef-header-widget-holder {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}


/* --------------------------------------------------------------------------
   3. LOGO SIZING
   -------------------------------------------------------------------------- */

header img,
.logo img,
.site-header img,
.custom-logo {
    max-width: 160px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    header img,
    .logo img,
    .site-header img,
    .custom-logo {
        max-width: 140px;
    }
}


/* --------------------------------------------------------------------------
   4. DROPDOWN MENUS (ShiftUp Theme Fix)
   -------------------------------------------------------------------------- */

.qodef-drop-down-second {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    z-index: 9999;
    min-width: 200px;
    max-width: 250px;
    width: auto;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-item-has-children:hover > .qodef-drop-down-second {
    display: block;
    opacity: 1;
    visibility: visible;
}

.qodef-drop-down-second .sub-menu li a {
    color: white;
    padding: 10px 15px;
    display: block;
    white-space: nowrap;
}

.qodef-drop-down-second .sub-menu li a:hover {
    background-color: #222;
}


/* --------------------------------------------------------------------------
   5. MOBILE MENU TOGGLE
   -------------------------------------------------------------------------- */

button.menu-toggle::after,
button.menu-toggle::before,
button.menu-toggle span::before {
    background-color: #ffffff;
}


/* --------------------------------------------------------------------------
   6. YMM (YEAR/MAKE/MODEL) SEARCH WIDGET
   -------------------------------------------------------------------------- */

.ymm-search-class div#ymm_content button.button.ymm-submit-any-selection {
    font-family: Oxanium, cursive;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
    position: relative;
    display: inline-flex;
    vertical-align: middle;
    width: auto;
    margin: 0;
    text-decoration: none;
    border-radius: 0;
    border: 0;
    outline: 0;
    padding: 22px 41px 18px 44px;
    cursor: pointer;
    z-index: 3;
    background: rgba(209, 209, 209, 0.25);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.2s;
}

.ymm-search-class div#ymm_content button.button.ymm-submit-any-selection::after {
    content: "";
    position: absolute;
    background-color: var(--qode-main-color);
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    z-index: -1;
    transition: width 0.4s;
}

.ymm-search-class div#ymm_content button.button.ymm-submit-any-selection:hover::after {
    width: 100%;
}

/* YMM positioning on archive/shop pages */
@media (min-width: 681px) {
    .archive div#ymm_content {
        position: relative;
        top: 100px;
        z-index: 1;
    }
    .archive .qodef-woo-results {
        position: relative;
        top: -100px;
        z-index: 1;
    }
}

@media (max-width: 680px) {
    .archive div#ymm_content {
        position: relative;
        top: 120px;
        z-index: 1;
    }
    .archive .qodef-woo-results {
        position: relative;
        top: -120px;
        z-index: 1;
    }
}


/* --------------------------------------------------------------------------
   7. WOOCOMMERCE PRODUCT DESCRIPTION FIX
   (Fixes the centre-aligned / offset text in product tabs)
   -------------------------------------------------------------------------- */

.woocommerce div.product .woocommerce-tabs .panel {
    text-align: left;
}

.product-desc-centered {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}


/* --------------------------------------------------------------------------
   8. HERO SECTION (General — used on service landing pages)
   -------------------------------------------------------------------------- */

header.hero {
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("https://garageeleven.com.au/wp-content/uploads/2025/09/248288_stewart-nat02-04-146.jpg")
        center / cover no-repeat !important;
    min-height: 70vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 20px !important;
    color: #fff !important;
}

.hero-content {
    max-width: 900px !important;
    margin: 0 auto !important;
}

header.hero h1,
header.hero p {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7) !important;
}

/* Hero buttons */
.btn {
    display: inline-block !important;
    padding: 0.9rem 1.2rem !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    background: #00bfa0 !important;
    color: #041b17 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
}

.btn-ghost {
    background: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
}

/* Hero — mobile */
@media (max-width: 768px) {
    header.hero {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
            url("https://garageeleven.com.au/wp-content/uploads/2025/09/248288_stewart-nat02-04-146.jpg")
            center 35% / cover no-repeat !important;
        min-height: 56vh !important;
        padding: 40px 16px !important;
    }

    .hero-content {
        max-width: 620px !important;
        margin: 0 auto !important;
    }

    header.hero h1 {
        font-size: clamp(28px, 7vw, 40px) !important;
        line-height: 1.15 !important;
        letter-spacing: 0 !important;
        margin: 0 0 10px !important;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6) !important;
        text-align: center !important;
        word-break: break-word;
    }

    header.hero p {
        font-size: clamp(14px, 3.8vw, 17px) !important;
        line-height: 1.5 !important;
        margin: 0 auto 14px !important;
        text-align: center !important;
        max-width: 46ch !important;
    }

    .hero-content .btn,
    .hero-content .btn-ghost {
        display: inline-block !important;
        width: auto !important;
        min-width: 180px !important;
        padding: 12px 16px !important;
        margin: 6px 6px 0 6px !important;
        text-align: center !important;
        font-weight: 700 !important;
        border-radius: 999px !important;
    }
}

@media (max-width: 380px) {
    header.hero h1 {
        font-size: 26px !important;
    }
    header.hero p {
        font-size: 14px !important;
    }
    .hero-content .btn,
    .hero-content .btn-ghost {
        min-width: 160px !important;
    }
}


/* --------------------------------------------------------------------------
   9. LANDING PAGE OVERRIDES — Page 41113 (Service Landing)
   -------------------------------------------------------------------------- */

/* Hide theme header/title/breadcrumbs */
.page-id-41113 .qodef-page-header,
.page-id-41113 .qodef-mobile-header,
.page-id-41113 .qodef-top-bar,
.page-id-41113 .qodef-title-holder,
.page-id-41113 .qodef-title-wrapper,
.page-id-41113 .qodef-title-area,
.page-id-41113 .qodef-page-title-area,
.page-id-41113 .qodef-breadcrumbs,
.page-id-41113 .site-header {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Kill reserved top spacing */
.page-id-41113 .qodef-page-wrapper,
.page-id-41113 .qodef-content,
.page-id-41113 .qodef-content-inner,
.page-id-41113 .qodef-page-inner,
.page-id-41113 .qodef-page-content,
.page-id-41113 .qodef-content-top,
.page-id-41113 .qodef-content-top--enabled,
.page-id-41113 .qodef-content-top-holder,
.page-id-41113 .qodef-content-grid-1400 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.page-id-41113 .elementor-location-header,
.page-id-41113 .elementor-section.elementor-top-section:first-of-type {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hero flush at top */
.page-id-41113 header.hero {
    margin-top: 0 !important;
    padding-top: 40px !important;
}

/* Centre hero content */
.page-id-41113 header.hero .hero-content {
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Admin bar fix */
.admin-bar.page-id-41113 body,
.admin-bar.page-id-41113 .qodef-page-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* --------------------------------------------------------------------------
   10. LANDING PAGE OVERRIDES — Page 41165
   -------------------------------------------------------------------------- */

/* Hide theme header/title/breadcrumbs */
.page-id-41165 .qodef-page-header,
.page-id-41165 .qodef-mobile-header,
.page-id-41165 .qodef-top-bar,
.page-id-41165 .qodef-title-holder,
.page-id-41165 .qodef-title-wrapper,
.page-id-41165 .qodef-title-area,
.page-id-41165 .qodef-page-title-area,
.page-id-41165 .qodef-breadcrumbs,
.page-id-41165 .site-header {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Kill reserved top spacing */
.page-id-41165 .qodef-page-wrapper,
.page-id-41165 .qodef-content,
.page-id-41165 .qodef-content-inner,
.page-id-41165 .qodef-page-inner,
.page-id-41165 .qodef-page-content,
.page-id-41165 .qodef-content-top,
.page-id-41165 .qodef-content-top--enabled,
.page-id-41165 .qodef-content-top-holder {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.page-id-41165 .elementor-location-header,
.page-id-41165 .elementor-section.elementor-top-section:first-of-type {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.page-id-41165 header.hero {
    margin-top: 0 !important;
}

/* Admin bar fix */
.admin-bar.page-id-41165 body,
.admin-bar.page-id-41165 .qodef-page-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* --------------------------------------------------------------------------
   11. G11 CONTAINER — General Content Blocks
   -------------------------------------------------------------------------- */

.g11-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.g11-container p,
.g11-container h1,
.g11-container h2,
.g11-container h3,
.g11-container ul,
.g11-container li {
    text-align: center;
    text-align-last: center;
}


/* --------------------------------------------------------------------------
   12. G11 CONTENT TYPOGRAPHY (within .g11-container context)
   -------------------------------------------------------------------------- */

.g11-container h1 {
    font-size: 48px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.g11-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
}

.g11-container h3 {
    font-size: 24px;
    font-weight: 700;
    color: #e60000;
    margin-bottom: 10px;
}

.g11-container p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 20px;
}


/* --------------------------------------------------------------------------
   13. G11 IMAGES
   -------------------------------------------------------------------------- */

.g11-img {
    width: 100%;
    border-radius: 10px;
    margin: 35px 0;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
}


/* --------------------------------------------------------------------------
   14. MEMBERSHIP TIER CARDS
   -------------------------------------------------------------------------- */

.membership-tier {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.1);
    border: 1px solid #222;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.membership-tier:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(230, 0, 0, 0.2);
}

.membership-tier ul {
    list-style: none;
    padding: 0;
}

.membership-tier li {
    margin: 8px 0;
    font-size: 17px;
    line-height: 1.5;
    position: relative;
}

.membership-tier li::before {
    content: "✔";
    color: #e6e6e6;
    margin-right: 10px;
}


/* --------------------------------------------------------------------------
   15. G11 BUTTONS
   -------------------------------------------------------------------------- */

.g11-btn {
    display: inline-block;
    background: #e6e6e6;
    padding: 14px 28px;
    border-radius: 6px;
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.g11-btn:hover {
    background: #ff1a1a;
    transform: translateY(-3px);
}


/* --------------------------------------------------------------------------
   16. MEMBER HUB — Layout & Cards
   -------------------------------------------------------------------------- */

.g11-hub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
}

/* Greeting banner */
.g11-greeting {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.g11-greeting h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.g11-status-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.g11-status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.g11-status-badge::before {
    content: "✓";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 8px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}

/* Section headings */
.g11-section {
    margin-bottom: 48px;
}

.g11-section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

/* Card grid */
.g11-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* Feature cards */
.g11-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.g11-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.g11-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff6b35 0%, #d32f2f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}

.g11-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.g11-card-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}

.g11-card-btn {
    display: inline-block;
    background: #ff6b35;
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.g11-card-btn:hover {
    background: #e55a2b;
    transform: scale(1.02);
    color: white !important;
}

/* Locked cards */
.g11-card.locked {
    background: #f9f9f9;
    opacity: 0.6;
    cursor: not-allowed;
    border: 2px dashed #ddd;
}

.g11-card.locked:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
}

.g11-card.locked .g11-card-icon {
    background: #9e9e9e;
    position: relative;
}

.g11-card.locked .g11-card-icon::before {
    content: "🔒";
    font-size: 28px;
}

.g11-card.locked .g11-card-title {
    color: #666;
}

.g11-lock-badge {
    display: inline-block;
    background: #9e9e9e;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.g11-card.locked .g11-card-btn {
    background: #ff6b35;
    color: white !important;
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}

.g11-card.locked .g11-card-btn:hover {
    background: #e55a2b;
    transform: scale(1.02);
}

.g11-card.locked::after {
    content: "Upgrade to unlock this feature";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.g11-card.locked:hover::after {
    opacity: 1;
}

.g11-card.locked > *:not(.g11-card-btn) {
    pointer-events: none;
}

/* Non-member CTA */
.g11-non-member-cta {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 20px;
    text-align: center;
}

.g11-non-member-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.g11-non-member-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

.g11-non-member-cta hr {
    border: 2px solid #ff6b35;
    width: 100px;
    margin: 40px auto;
}

.g11-non-member-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.g11-non-member-cta h3 span {
    color: #d32f2f;
}

.g11-non-member-cta ul {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 2;
    list-style-position: inside;
}

.g11-join-btn {
    display: inline-block;
    background: #ff6b35;
    color: white !important;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}

.g11-join-btn:hover {
    background: #e55a2b;
    transform: scale(1.02);
    color: white !important;
}

.g11-login-link {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
}

.g11-login-link a {
    color: #ff6b35;
    text-decoration: none;
}

.g11-login-link a:hover {
    text-decoration: underline;
}


/* --------------------------------------------------------------------------
   17. MEMBER HUB — Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
    .g11-hub-container {
        padding: 24px 16px;
    }

    .g11-greeting {
        padding: 24px;
    }

    .g11-greeting h1 {
        font-size: 24px;
    }

    .g11-status-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .g11-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .g11-card {
        min-height: 200px;
    }

    .g11-section-title {
        font-size: 20px;
    }

    .g11-non-member-cta h2 {
        font-size: 2rem;
    }

    .g11-non-member-cta h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .g11-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

MENU FIX ---------------

/* =============================================================
   GARAGE ELEVEN - Site-Wide CSS Fixes
   Add this to: Appearance > Customize > Additional CSS
   OR paste into ShiftUp Theme Options > Custom CSS
   ============================================================= */

/* ----- FIX 1: DROPDOWN MENU - White on White Text Fix ----- */

/* ShiftUp theme dropdown submenus */
.qodef-header-navigation .sub-menu li a,
.qodef-header-navigation .sub-menu li a span,
.qodef-drop-down--menu .sub-menu li a,
.qodef-drop-down--menu .sub-menu li a span {
    color: #1a1a1a !important;
}

/* Dropdown hover state */
.qodef-header-navigation .sub-menu li a:hover,
.qodef-header-navigation .sub-menu li a:hover span,
.qodef-drop-down--menu .sub-menu li a:hover,
.qodef-drop-down--menu .sub-menu li a:hover span {
    color: #4CAF50 !important; /* Garage 11 green accent - adjust hex to match your brand */
}

/* Ensure dropdown background is visible */
.qodef-header-navigation .sub-menu,
.qodef-drop-down--menu .sub-menu {
    background-color: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Dropdown sub-items hover background */
.qodef-header-navigation .sub-menu li:hover,
.qodef-drop-down--menu .sub-menu li:hover {
    background-color: #f5f5f5 !important;
}

/* ----- FIX 2: CONSISTENT HEADER ACROSS ALL PAGES ----- */

/* Force header to use dark background consistently (transparent headers cause issues) */
.qodef-header--light .qodef-header-navigation > ul > li > a,
.qodef-header--light .qodef-header-navigation > ul > li > a span {
    color: #ffffff !important;
}

/* Active/current menu item highlight */
.qodef-header-navigation > ul > li.current-menu-item > a,
.qodef-header-navigation > ul > li.current-menu-item > a span,
.qodef-header-navigation > ul > li.current-menu-ancestor > a,
.qodef-header-navigation > ul > li.current-menu-ancestor > a span {
    color: #4CAF50 !important; /* Green underline bar color from your nav */
}

/* ----- FIX 3: MOBILE MENU CONSISTENCY ----- */

.qodef-mobile-header-navigation li a,
.qodef-mobile-header-navigation .sub-menu li a {
    color: #1a1a1a !important;
}

.qodef-mobile-header-navigation .sub-menu {
    background-color: #ffffff !important;
}

/* ----- FIX 4: CONSISTENT BUTTON STYLING ACROSS ALL PAGES ----- */

/* Primary CTA buttons (Get a Quote, Book Now, etc.) */
.elementor-button,
.qodef-button,
a.qodef-btn {
    background-color: #4CAF50 !important; /* Adjust to your brand green */
    color: #ffffff !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
}

.elementor-button:hover,
.qodef-button:hover,
a.qodef-btn:hover {
    background-color: #388E3C !important; /* Darker green on hover */
    color: #ffffff !important;
}

/* ----- FIX 5: CONSISTENT FOOTER ACROSS ALL PAGES ----- */

.qodef-footer-top-area,
.qodef-footer-bottom-area {
    background-color: #1a1a1a !important;
    color: #cccccc !important;
}

.qodef-footer-top-area a,
.qodef-footer-bottom-area a {
    color: #ffffff !important;
}

/* ----- FIX 6: HIDE PLACEHOLDER / LOREM IPSUM TEXT ----- */
/* Temporary - remove these once you've replaced the placeholder content */
/* This is a bandaid - you should update the actual page content */


/* ----- FIX 7: CONSISTENT SECTION SPACING ----- */

.elementor-section {
    /* Ensure consistent vertical rhythm */
}

/* Consistent heading styles across Elementor sections */
.elementor-heading-title {
    font-family: inherit !important;
}

/* ----- FIX 8: STICKY HEADER DROPDOWN FIX ----- */
/* When header becomes sticky/scrolled, dropdowns sometimes inherit wrong colors */

.qodef-header--sticky .qodef-header-navigation .sub-menu li a,
.qodef-header--sticky .qodef-header-navigation .sub-menu li a span,
.qodef-header-sticky .qodef-header-navigation .sub-menu li a,
.qodef-header-sticky .qodef-header-navigation .sub-menu li a span,
header.sticky .sub-menu li a,
header.is-sticky .sub-menu li a {
    color: #1a1a1a !important;
}

.qodef-header--sticky .qodef-header-navigation .sub-menu,
.qodef-header-sticky .qodef-header-navigation .sub-menu,
header.sticky .sub-menu,
header.is-sticky .sub-menu {
    background-color: #ffffff !important;
}