/* ==========================================
   1. HEADER & NAVIGATION ACCESSIBILITY
   (Fixes Lighthouse Contrast & Touch Targets)
   ========================================== */

/* Force high contrast for Site Title and Menu Links */
header .site-title a, 
header .ct-menu-link,
header .ct-menu-link > span {
    color: #000000 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* Increase touch target size for mobile and desktop taps */
header .ct-menu-link {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    display: inline-flex !important;
    align-items: center;
    min-height: 48px; /* Standard accessibility height */
}

/* Hover state: distinguish by more than just color */
header .ct-menu-link:hover {
    text-decoration: underline !important;
    background-color: rgba(0,0,0,0.05) !important;
}

/* ==========================================
   2. HOMEPAGE LAYOUT STYLES
   (Custom HTML Block Enhancements)
   ========================================== */

.custom-hp { 
    font-family: system-ui, -apple-system, sans-serif; 
    color: #000000 !important; 
    line-height: 1.6; 
}

.hp-container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* Hero Section with Green Gradient */
.hp-hero { 
    background-color: #1e3a1a !important; 
    background: linear-gradient(135deg, #0f1f0c 0%, #1e3a1a 100%) !important; 
    padding: 80px 20px; 
    text-align: center; 
    color: #ffffff !important; 
}

/* High-Impact Buttons */
.hp-btn { 
    display: inline-block; 
    padding: 18px 40px; 
    border-radius: 50px; 
    text-decoration: none !important; 
    font-weight: 900; 
    margin: 10px; 
    box-shadow: 0 6px 15px rgba(0,0,0,0.4); 
    text-align: center; 
    font-size: 1.2rem; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Service Cards Grid */
.card-row { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
    padding: 40px 0; 
}

.hp-card { 
    background: #ffffff !important; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    border: 1px solid #e5e7eb; 
    max-width: 330px; 
    width: 100%; 
    text-align: left; 
}

/* Trust Bar / Social Proof */
.trust-bar { 
    background: #f3f4f6; 
    padding: 20px 0; 
    border-bottom: 1px solid #e5e7eb; 
}

.trust-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
    font-weight: 700; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    color: #4b5563; 
}

/* FAQ Section Styling */
.faq-item { 
    margin-bottom: 25px; 
    text-align: left; 
}

.faq-item h4 { 
    color: #1e3a1a; 
    margin-bottom: 8px; 
    font-size: 1.2rem; 
    font-weight: 800; 
}