/* Core Custom CSS & Brand Styling */
:root {
    --brand-yellow: #DFEA28;
    --brand-lime: #88C838;
    --brand-green: #44AA36;
    --brand-dark: #0B111E;
    --brand-card: #131D31;
}

/* Gradient Button Utility */
.btn-brand {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0B111E;
    background: linear-gradient(135deg, #DFEA28 0%, #88C838 50%, #44AA36 100%);
    box-shadow: 0 4px 20px -2px rgba(136, 200, 56, 0.35);
    transition: all 0.2s ease-in-out;
}

.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -2px rgba(136, 200, 56, 0.5);
    filter: brightness(1.05);
}

.btn-brand:active {
    transform: translateY(0);
}

/* Equipment and Service Card Accents */
.equipment-card {
    background: #131D31;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.equipment-card:hover {
    border-color: rgba(223, 234, 40, 0.4);
    transform: translateY(-3px);
}

/* Smooth Accordion Arrow Rotation */
.accordion-arrow {
    transition: transform 0.2s ease-in-out;
}